Skip to Content
Building RESTful Web Services with Java EE 8
book

Building RESTful Web Services with Java EE 8

by Mario-Leander Reimer
July 2018
Intermediate to advanced
116 pages
2h 41m
English
Packt Publishing
Content preview from Building RESTful Web Services with Java EE 8

ConnectionCallback

The second type of callback that is optionally supported is ConnectionCallback. Here, you can specify a custom implementation. Currently, the only method you need to implement is the onDisconnect method, which is passed the actual AsyncResponse. This method is called if the client is connected prematurely. According to JSR 339, the support for ConnectionCallback is optional:

    static class LoggingConnectionCallback implements       ConnectionCallback {        @Override        public void onDisconnect(AsyncResponse disconnected) {            LOGGER.log(Level.INFO, "Client disconnected on {0}.",               disconnected);        }
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

RESTful Java Web Services - Third Edition

RESTful Java Web Services - Third Edition

Balachandar Bogunuva Mohanram

Publisher Resources

ISBN: 9781789532883Supplemental Content