T - The type to which the support belongs.public interface OutputGroupSupport<T extends OutputGroupSupport<T>>
| Modifier and Type | Method and Description |
|---|---|
T |
group(org.vertx.java.core.Handler<OutputGroup> handler)
Creates a uniquely named output group.
|
T |
group(String name,
org.vertx.java.core.Handler<OutputGroup> handler)
Creates a named output group.
|
T |
group(String name,
Object args,
org.vertx.java.core.Handler<OutputGroup> handler)
Creates a named output group.
|
T group(org.vertx.java.core.Handler<OutputGroup> handler)
Messages sent through groups will always be sent to the same connection(s). Groups can also be nested.
handler - A handler to be called once the group has been setup.T group(String name, org.vertx.java.core.Handler<OutputGroup> handler)
Messages sent through groups will always be sent to the same connection(s). Groups can also be nested.
name - The output group name.handler - A handler to be called once the group has been setup.T group(String name, Object args, org.vertx.java.core.Handler<OutputGroup> handler)
Messages sent through groups will always be sent to the same connection(s). Groups can also be nested.
name - The output group name.args - Arguments to the group's start handler.handler - A handler to be called once the group has been setup.Copyright © 2013-2014. All Rights Reserved.