コード例 #1
0
ファイル: BaseObject.cs プロジェクト: somdoron/NetMQ4
 internal BaseObject(BaseObject parent)
 {
     SlotId = parent.SlotId;
 }
コード例 #2
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public BindCommand(BaseObject destination, Pipe pipe)
     : base(destination)
 {
     Pipe = pipe;
 }
コード例 #3
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public CloseAckCommand(BaseObject destination)
     : base(destination)
 {
 }
コード例 #4
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public PlugCommand(BaseObject destination)
     : base(destination)
 {
 }
コード例 #5
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public AttachCommand(BaseObject destination, IEngine engine)
     : base(destination)
 {
     Engine = engine;
 }
コード例 #6
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public OwnCommand(BaseObject destination, Own child)
     : base(destination)
 {
     Child = child;
 }
コード例 #7
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public ActivateWriteCommand(BaseObject destination, long messagesRead)
     : base(destination)
 {
     MessagesRead = messagesRead;
 }
コード例 #8
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public HiccupCommand(BaseObject destination, YPipe<Frame> pipe)
     : base(destination)
 {
     Pipe = pipe;
 }
コード例 #9
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public InProcConnectedCommand(BaseObject destination)
     : base(destination)
 {
 }
コード例 #10
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public DoneCommand(BaseObject destination)
     : base(destination)
 {
 }
コード例 #11
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 protected Command(BaseObject destination)
 {
     Destination = destination;
 }
コード例 #12
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public CloseRequestCommand(BaseObject destination, Own child)
     : base(destination)
 {
     Child = child;
 }
コード例 #13
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public ActivateReadCommand(BaseObject destination)
     : base(destination)
 {
 }
コード例 #14
0
ファイル: Command.cs プロジェクト: somdoron/NetMQ4
 public CloseCommand(BaseObject destination, TimeSpan linger)
     : base(destination)
 {
     Linger = linger;
 }