public void setDevice(AggreGateDevice aDevice)
 {
     device = aDevice;
 }
 public AsyncDeviceCommandProcessor(AggreGateDeviceController aDeviceController,
                                    AggreGateDevice device, Int64 commandTimeout)
     : base(device.ToString(), commandTimeout, true)
 {
     owner = aDeviceController;
 }
 protected AggreGateDeviceController(AggreGateDevice device, long commandTimeout)
 {
     formatCache         = new FormatCache(this);
     this.device         = device;
     this.commandTimeout = commandTimeout;
 }
Esempio n. 4
0
 public RemoteLinkServerController(AggreGateDevice device, Boolean async)
     : base(device, COMMAND_TIMEOUT)
 {
     setContextManager(
         new RemoteDeviceContextManager <AggreGateDevice>(this, async));
 }