You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in ChannelEngine the method processPacket() is adding incoming packet to incomingQueue. But the queue is implemented as BlockingQueue and for adding is put() used. The put works as it blocks if the queue is full. But there are other methods like add() that adds in not blocking manner and throws exception if the queue is full. In second case war could send error stanza back.
Can someone more "skilled in the art" comment on this?
The text was updated successfully, but these errors were encountered:
The following question came up:
in ChannelEngine the method processPacket() is adding incoming packet to incomingQueue. But the queue is implemented as BlockingQueue and for adding is put() used. The put works as it blocks if the queue is full. But there are other methods like add() that adds in not blocking manner and throws exception if the queue is full. In second case war could send error stanza back.
Can someone more "skilled in the art" comment on this?
The text was updated successfully, but these errors were encountered: