graphql-spring-boot icon indicating copy to clipboard operation
graphql-spring-boot copied to clipboard

Handling EOFException

Open rosmith opened this issue 4 years ago • 0 comments

Version Used: 5.10.0

I'm building a realtime app and therefore make extremely use of the graphql subscriptions. When a user makes a subscription i internally return a "publisher" as it should be. I internally keep a reference to this publisher in order to regularly post internal events to the client. Works pretty good. My problem comes when the websocket connection to the server gets broken. In the former version 5.3.1, i could, for such cases, always see stacktraces of the EOFException in the logs. This EOFException seems to be handled pretty much better in the current version 5.10.0 of the framework. My question: Is it possible that i implement a handler for this particular exception? With this handler i will be able to clean the references to the publisher i keep, so as to avoid loading memory.

rosmith avatar Aug 08 '19 14:08 rosmith