public interface InputCollector extends IOCollector<InputCollector>
The input collector is the primary interface for receiving input within a component
instance. Input collectors are simple wrappers around InputPort instances.
Collection<InputPort> ports()
InputPort port(String name)
If the port doesn't already exist then the input collector will lazily create the port. Ports can be referenced prior to the input event starting up, and once the input starts ports will be properly configured.
port in interface IOCollector<InputCollector>name - The name of the port to load.Copyright © 2013-2014. All Rights Reserved.