From 0a06dc853db2b26bb52f7a01b3a315a10cd201be Mon Sep 17 00:00:00 2001 From: xieguigang Date: Tue, 23 Jul 2019 16:16:46 +0800 Subject: [PATCH] add protocol entries --- ComputingServices/ComputingServices.vbproj | 1 + .../Registry/RegistryProtocol.vb | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 ComputingServices/DistributeServices/Registry/RegistryProtocol.vb diff --git a/ComputingServices/ComputingServices.vbproj b/ComputingServices/ComputingServices.vbproj index 62e908a..5da91ba 100644 --- a/ComputingServices/ComputingServices.vbproj +++ b/ComputingServices/ComputingServices.vbproj @@ -208,6 +208,7 @@ + diff --git a/ComputingServices/DistributeServices/Registry/RegistryProtocol.vb b/ComputingServices/DistributeServices/Registry/RegistryProtocol.vb new file mode 100644 index 0000000..d79af65 --- /dev/null +++ b/ComputingServices/DistributeServices/Registry/RegistryProtocol.vb @@ -0,0 +1,17 @@ +Namespace DistributeServices + + Public Enum RegistryProtocols + ''' + ''' Send a ping to ask if it is a grid node? + ''' + IsANode + ''' + ''' Send a ping to ask if it is a registry of the + ''' + IsAPool + ''' + ''' A grid node sign up and registry in this computing grid + ''' + SignUp + End Enum +End Namespace \ No newline at end of file