Class OrphanChannelBuildItem
- java.lang.Object
-
- io.quarkus.builder.item.BuildItem
-
- io.quarkus.builder.item.MultiBuildItem
-
- io.quarkus.smallrye.reactivemessaging.deployment.items.OrphanChannelBuildItem
-
public final class OrphanChannelBuildItem extends io.quarkus.builder.item.MultiBuildItemRepresents an outbound channel without downstream or an inbound channel without upstream. In other words, this class represents channels that should be managed by connectors.
-
-
Constructor Summary
Constructors Constructor Description OrphanChannelBuildItem(ChannelDirection direction, String name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ChannelDirectiongetDirection()StringgetName()static OrphanChannelBuildItemof(ChannelDirection direction, String name)Creates a new instance ofOrphanChannelBuildItem.
-
-
-
Constructor Detail
-
OrphanChannelBuildItem
public OrphanChannelBuildItem(ChannelDirection direction, String name)
-
-
Method Detail
-
of
public static OrphanChannelBuildItem of(ChannelDirection direction, String name)
Creates a new instance ofOrphanChannelBuildItem.- Parameters:
direction- the direction of the channelname- the name of the channel- Returns:
- the new
OrphanChannelBuildItem
-
getName
public String getName()
-
getDirection
public ChannelDirection getDirection()
-
-