public DelegateCommunicationJob(GenerateCommandDelegate commandCallback)
 {
     this.commandCallback  = commandCallback;
     this.responseCallback = null;
 }
		public DelegateCommunicationJob(GenerateCommandDelegate commandCallback)
		{
			this.commandCallback = commandCallback;
			this.responseCallback = null;
		}
 public DelegateCommunicationJob(
     GenerateCommandDelegate commandCallback, ProcessRsponseDelegate responseCallback)
 {
     this.commandCallback  = commandCallback;
     this.responseCallback = responseCallback;
 }
		public DelegateCommunicationJob(
			GenerateCommandDelegate commandCallback, ProcessRsponseDelegate responseCallback)
		{
			this.commandCallback = commandCallback;
			this.responseCallback = responseCallback;
		}