Ejemplo n.º 1
0
 public QueueHandlerBinder(ThreadPooledClient outerInstance, BlockingQueue <IList <IMessage> > queue, MessageHandler handler)
 {
     this.outerInstance = outerInstance;
     this.queue         = queue;
     this.handler       = handler;
 }
Ejemplo n.º 2
0
 public ThreadAnonymousInnerClass(ThreadPooledClient outerInstance)
 {
     this.outerInstance = outerInstance;
     backlog            = new LinkedList <>();
 }
Ejemplo n.º 3
0
 internal HandlerRunner(ThreadPooledClient outerInstance, MessageHandler handler, IMessage message)
 {
     this.outerInstance = outerInstance;
     this.handler       = handler;
     this.message       = message;
 }