Example #1
0
 public RPCEndGhosting() : base(RPCGuaranteeType.RPCGuaranteedOrdered, RPCDirection.RPCDirAny)
 {
     Functor = new FunctorDecl <GhostConnection>("rpcEndGhosting_remote", new Type[] { });
 }
Example #2
0
 public RPCStartGhosting() : base(RPCGuaranteeType.RPCGuaranteedOrdered, RPCDirection.RPCDirAny)
 {
     Functor = new FunctorDecl <GhostConnection>("rpcStartGhosting_remote", new[] { typeof(uint) });
 }
Example #3
0
 public RPCReadyForNormalGhosts() : base(RPCGuaranteeType.RPCGuaranteedOrdered, RPCDirection.RPCDirAny)
 {
     Functor = new FunctorDecl <GhostConnection>("rpcReadyForNormalGhosts_remote", new[] { typeof(uint) });
 }
Example #4
0
 public RPCMsgNonGuaranteedFragmented()
     : base(RPCGuaranteeType.RPCUnguaranteed, RPCDirection.RPCDirAny)
 { Functor = new FunctorDecl<TNLConnection>("rpcMsgNonGuaranteedFragmented_remote", new[] { typeof(UInt32), typeof(UInt16), typeof(UInt16), typeof(UInt16), typeof(ByteBuffer) }); }