Package org.jgroups.demos
Class PubServer
java.lang.Object
org.jgroups.demos.PubServer
- All Implemented Interfaces:
Receiver
Demo which starts an
NioServer that accepts messages from clients (PubClient) and forwards them to
all connected clients- Since:
- 3.6.5
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected static voidhelp()static voidvoidDelivers a message from a given sender to the applicationvoidReceive data from the given sendervoidreceive(Address sender, ByteBuffer buf) Delivers a message from a given sender to the applicationprotected voidstart(InetAddress bind_addr, int port, boolean nio, int recv_buf_size)
-
Field Details
-
server
-
log
-
-
Constructor Details
-
PubServer
public PubServer()
-
-
Method Details
-
start
protected void start(InetAddress bind_addr, int port, boolean nio, int recv_buf_size) throws Exception - Throws:
Exception
-
receive
Description copied from interface:ReceiverDelivers a message from a given sender to the application- Specified by:
receivein interfaceReceiver- Parameters:
sender- The sender of the messagebuf- The buffer. An application typically de-serializes data from the buffer into objects used by the application. Note that when receive() returns, it is not safe to use the buffer any longer; if an application needs to use a buffer after this callback returns, it must make a copy.Note that buf could be a direct ByteBuffer.
-
receive
Description copied from interface:ReceiverDelivers a message from a given sender to the application- Specified by:
receivein interfaceReceiver- Parameters:
sender- The sender of the messagebuf- The buffer. An application typically de-serializes data from the buffer into objects used by the application. Note that when receive() returns, it is not safe to use the buffer any longer; if an application needs to use a buffer after this callback returns, it must make a copy.offset- The offset at which the received data startslength- The length of the received data
-
receive
Description copied from interface:ReceiverReceive data from the given sender -
main
- Throws:
Exception
-
help
protected static void help()
-