Refactor dispatch method of ResponseDispatcher to be unchecked #223

Merged
lars.winzer merged 5 commits from feat/35-make-dispatch-method-of-responsedispatcher-unchecked into main 2026-04-01 13:04:14 +02:00
Showing only changes of commit ae98334c56 - Show all commits
@@ -27,8 +27,8 @@ public class ResponseDispatcher {
* the target session's response queue.
*
* @param response the response to dispatch
* @throws InterruptedException if the thread is interrupted while waiting to enqueue the
* primitive response
* @throws ResponseDispatchException wraps any exceptions that occur during dispatching, such as
* the {@link InterruptedException}
*/
public void dispatch(Response response) {
PrimitiveResponse primitiveResponse = ResponseEncoder.encode(response);