Example #1
0
 public AdapterRequest(LookupI lookup, string id, int retryCount) : base(lookup, id, retryCount)
 {
     _start = DateTime.Now.Ticks;
 }
Example #2
0
 public LookupReplyI(LookupI lookup)
 {
     _lookup = lookup;
 }
Example #3
0
 public ObjectRequest(LookupI lookup, Ice.Identity id, int retryCount) : base(lookup, id, retryCount)
 {
 }
Example #4
0
 protected Request(LookupI lookup, T id, int retryCount)
 {
     lookup_ = lookup;
     nRetry_ = retryCount;
     _id     = id;
 }
Example #5
0
 public LocatorI(LookupI lookup, Ice.LocatorRegistryPrx registry)
 {
     _lookup   = lookup;
     _registry = registry;
 }