public interface BroadcastService
| Modifier and Type | Interface and Description |
|---|---|
static interface |
BroadcastService.Builder
Broadcast service builder.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addListener(String subject,
Consumer<byte[]> listener)
Adds a broadcast listener.
|
void |
broadcast(String subject,
byte[] message)
Broadcasts the given message.
|
void |
removeListener(String subject,
Consumer<byte[]> listener)
Removes a broadcast listener.
|
void broadcast(String subject, byte[] message)
subject - the message subjectmessage - the message to broadcastvoid addListener(String subject, Consumer<byte[]> listener)
subject - the message subjectlistener - the broadcast listener to addCopyright © 2013–2018. All rights reserved.