예제 #1
0
 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;
 }