コード例 #1
0
 public ToDoObj1(DeliveryService svc, MyValueFactoryCuae vf, int code, string msg)
 {
     this.svc     = svc;
     this.vf      = vf;
     this.code    = code;
     this.message = msg;
 }
コード例 #2
0
 /**
  * @param svc
  * @param vf
  */
 public MyCuaeServerImpl(DeliveryService svc, MyValueFactoryCuae vf)
 {
     this.svc = svc;
     this.vf  = vf;
 }
コード例 #3
0
 public MyCuaeServerStub(DeliveryService svc, Pool queued, Pool free, MyValueFactoryCuae vf)
     : base(svc, new MyCuaeServerImpl(svc, vf), queued, free)
 {
 }
コード例 #4
0
 public ToDoObj(DeliveryService svc, MyValueFactoryCuae vf, int code)
 {
     this.svc  = svc;
     this.vf   = vf;
     this.code = code;
 }
コード例 #5
0
ファイル: MainCuaeListener.cs プロジェクト: NeoTim/etch
 public SessionMessage NewMyCuaeServer(DeliveryService d, Pool queued, Pool free, MyValueFactoryCuae vf)
 {
     return(new MyCuaeServerStub(d, queued, free, vf));
 }