Hello – I’ve got an operator that runs a cleanup thread (separate from the main 
event loop) and triggers a callback when an item is removed from an internal 
data structure. I would like for this callback to emit data from one of the 
operator’s ports, but I run into the following Exception:

(From DefaultOutputPort.java, line 58)
if (operatorThread != null && Thread.currentThread() != operatorThread) {
  // only under certain modes: enforce this
  throw new IllegalStateException("Current thread " + 
Thread.currentThread().getName() +
      " is different from the operator thread " + operatorThread.getName());
}

I could obviously extend DefaultOperatorPort to bypass this but I’d like to 
understand why that constraint is there and if there’s a good way to work 
around it.

Would love to hear the community’s thoughts. Thanks!

- Ilya Ganelin
[id:image001.png@01D1F7A4.F3D42980]
________________________________________________________

The information contained in this e-mail is confidential and/or proprietary to 
Capital One and/or its affiliates and may only be used solely in performance of 
work or services for Capital One. The information transmitted herewith is 
intended only for use by the individual or entity to which it is addressed. If 
the reader of this message is not the intended recipient, you are hereby 
notified that any review, retransmission, dissemination, distribution, copying 
or other use of, or taking of any action in reliance upon this information is 
strictly prohibited. If you have received this communication in error, please 
contact the sender and delete the material from your computer.

Reply via email to