Package io.vertx.mutiny.ext.stomp
Class DestinationFactory
- java.lang.Object
-
- io.vertx.mutiny.ext.stomp.DestinationFactory
-
public class DestinationFactory extends Object
Interface implemented to customize the destination creation. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<DestinationFactory>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description DestinationFactory(io.vertx.ext.stomp.DestinationFactory delegate)
DestinationFactory(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Destination
create(Vertx vertx, String name)
boolean
equals(Object o)
io.vertx.ext.stomp.DestinationFactory
getDelegate()
int
hashCode()
static DestinationFactory
newInstance(io.vertx.ext.stomp.DestinationFactory arg)
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<DestinationFactory> __TYPE_ARG
-
-
Constructor Detail
-
DestinationFactory
public DestinationFactory(io.vertx.ext.stomp.DestinationFactory delegate)
-
DestinationFactory
public DestinationFactory(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.stomp.DestinationFactory getDelegate()
-
create
public Destination create(Vertx vertx, String name)
- Parameters:
vertx
- the vert.x instance used by the STOMP server.name
- the destination name.- Returns:
- the destination,
null
to reject the creation.
-
newInstance
public static DestinationFactory newInstance(io.vertx.ext.stomp.DestinationFactory arg)
-
-