public RSocketMsg(RSocketMsgType type, string name, string topic, byte[] data) { this.Type = (byte)type; this.ServiceName = name; this.MethodName = topic; this.Data = data; }
public RSocketMsg(RSocketMsgType type, string serviceName, string method, byte[] data) { this.Type = (byte)type; this.ServiceName = serviceName; this.MethodName = method; this.Data = data; }
public RSocketMsg(RSocketMsgType type, string name, string topic) : this(type, name, topic, null) { }
public RSocketMsg(RSocketMsgType type, string name) : this(type, name, string.Empty) { }
public RSocketMsg(RSocketMsgType type, string serviceName, string method) : this(type, serviceName, method, null) { }
public RSocketMsg(RSocketMsgType type, string serviceName) : this(type, serviceName, string.Empty) { }