Package io.vertx.ext.shell.command.base
Class BusSend
- java.lang.Object
-
- io.vertx.ext.shell.command.AnnotatedCommand
-
- io.vertx.ext.shell.command.base.BusPublish
-
- io.vertx.ext.shell.command.base.BusSend
-
public class BusSend extends BusPublish
- Author:
- Julien Viet
-
-
Constructor Summary
Constructors Constructor Description BusSend()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
process(CommandProcess process)
Process the command, when the command is done processing it should call theCommandProcess.end()
method.void
setReply(boolean reply)
void
setTimeout(long timeout)
-
Methods inherited from class io.vertx.ext.shell.command.base.BusPublish
parseBody, setAddress, setBody, setHeaders, setType, setVerbose
-
Methods inherited from class io.vertx.ext.shell.command.AnnotatedCommand
cli, complete, name
-
-
-
-
Method Detail
-
setTimeout
public void setTimeout(long timeout)
-
setReply
public void setReply(boolean reply)
-
process
public void process(CommandProcess process)
Description copied from class:AnnotatedCommand
Process the command, when the command is done processing it should call theCommandProcess.end()
method.- Overrides:
process
in classBusPublish
- Parameters:
process
- the command process
-
-