Package com.swiftmq.impl.streams.comp.io
Class InputBuilder
- java.lang.Object
-
- com.swiftmq.impl.streams.comp.io.InputBuilder
-
public class InputBuilder extends java.lang.Object
Factory to create Inputs.- Author:
- IIT Software GmbH, Muenster/Germany, (c) 2016, All Rights Reserved
-
-
Constructor Summary
Constructors Constructor Description InputBuilder(StreamContext ctx, java.lang.String name)
Internal use.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ManagementInput
management()
Creates a new ManagementInput and registers it under the context name.QueueInput
queue()
Creates a new QueueInput.TopicInput
topic()
Creates a new TopicInput.QueueWireTapInput
wiretap(java.lang.String wiretapName)
Creates a new QueueWireTapInput.
-
-
-
Constructor Detail
-
InputBuilder
public InputBuilder(StreamContext ctx, java.lang.String name)
Internal use.
-
-
Method Detail
-
queue
public QueueInput queue() throws java.lang.Exception
Creates a new QueueInput.- Returns:
- QueueInput
- Throws:
java.lang.Exception
-
wiretap
public QueueWireTapInput wiretap(java.lang.String wiretapName) throws java.lang.Exception
Creates a new QueueWireTapInput.- Returns:
- QueueWireTapInput
- Throws:
java.lang.Exception
-
topic
public TopicInput topic() throws java.lang.Exception
Creates a new TopicInput.- Returns:
- TopicInput
- Throws:
java.lang.Exception
-
management
public ManagementInput management() throws java.lang.Exception
Creates a new ManagementInput and registers it under the context name.- Returns:
- ManagementInput
- Throws:
java.lang.Exception
-
-