From e2da541f6368c8d2ff4401a39bf2bb43d2bd2de2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AC=9D=E6=A1=82=E7=B6=B1?= Date: Sun, 28 Feb 2016 17:22:29 +0800 Subject: [PATCH] gethashcode as the protocol handler? --- RQL/RESTProvider.vb | 14 ++++++++++++++ RQL/RQL.vbproj | 1 + RQL/Repository.vb | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 RQL/RESTProvider.vb diff --git a/RQL/RESTProvider.vb b/RQL/RESTProvider.vb new file mode 100644 index 0000000..324cc8f --- /dev/null +++ b/RQL/RESTProvider.vb @@ -0,0 +1,14 @@ +''' +''' 在线查询服务提供模块 +''' +Public Class RESTProvider + + ''' + ''' + ''' + ''' + ''' 需要在这里将url转换为Long以进行protocol的绑定操作 + Sub New(portal As Integer, repo As Repository) + + End Sub +End Class diff --git a/RQL/RQL.vbproj b/RQL/RQL.vbproj index 98b40d2..3f231e0 100644 --- a/RQL/RQL.vbproj +++ b/RQL/RQL.vbproj @@ -64,6 +64,7 @@ + diff --git a/RQL/Repository.vb b/RQL/Repository.vb index 49a5d70..13efc2a 100644 --- a/RQL/Repository.vb +++ b/RQL/Repository.vb @@ -5,7 +5,7 @@ Imports Microsoft.VisualBasic.Serialization.JsonContract Imports RQL.StorageTek ''' -''' +''' Repository database ''' Public Class Repository : Implements ISaveHandle