All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kafka.network.package.html Maven / Gradle / Ivy

There is a newer version: 2.4.1
Show newest version

The network server for kafka. Now application specific code here, just general network server stuff.

The classes Receive and Send encapsulate the incoming and outgoing transmission of bytes. A Handler is a mapping between a Receive and a Send, and represents the users hook to add logic for mapping requests to actual processing code. Any uncaught exceptions in the reading or writing of the transmissions will result in the server logging an error and closing the offending socket. As a result it is the duty of the Handler implementation to catch and serialize any application-level errors that should be sent to the client.
This slightly lower-level interface that models sending and receiving rather than requests and responses is necessary in order to allow the send or receive to be overridden with a non-user-space writing of bytes using FileChannel.transferTo.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy