예제 #1
0
 public RSocketMsg(RSocketMsgType type, string name, string topic, byte[] data)
 {
     this.Type        = (byte)type;
     this.ServiceName = name;
     this.MethodName  = topic;
     this.Data        = data;
 }
예제 #2
0
 public RSocketMsg(RSocketMsgType type, string serviceName, string method, byte[] data)
 {
     this.Type        = (byte)type;
     this.ServiceName = serviceName;
     this.MethodName  = method;
     this.Data        = data;
 }
예제 #3
0
 public RSocketMsg(RSocketMsgType type, string name, string topic) : this(type, name, topic, null)
 {
 }
예제 #4
0
 public RSocketMsg(RSocketMsgType type, string name) : this(type, name, string.Empty)
 {
 }
예제 #5
0
 public RSocketMsg(RSocketMsgType type, string serviceName, string method) : this(type, serviceName, method, null)
 {
 }
예제 #6
0
 public RSocketMsg(RSocketMsgType type, string serviceName) : this(type, serviceName, string.Empty)
 {
 }