public abstract class AbstractSinkProcessor extends Object implements SinkProcessor
Constructor and Description |
---|
AbstractSinkProcessor() |
Modifier and Type | Method and Description |
---|---|
LifecycleState |
getLifecycleState()
Return the current state of the service or component.
|
protected List<Sink> |
getSinks() |
void |
setSinks(List<Sink> sinks)
Set all sinks to work with.
|
void |
start()
Starts a service or component.
|
void |
stop()
Stops a service or component.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
process
configure
public void start()
LifecycleAware
Starts a service or component.
Implementations should determine the result of any start logic and effect
the return value of LifecycleAware.getLifecycleState()
accordingly.
start
in interface LifecycleAware
public void stop()
LifecycleAware
Stops a service or component.
Implementations should determine the result of any stop logic and effect
the return value of LifecycleAware.getLifecycleState()
accordingly.
stop
in interface LifecycleAware
public LifecycleState getLifecycleState()
LifecycleAware
Return the current state of the service or component.
getLifecycleState
in interface LifecycleAware
public void setSinks(List<Sink> sinks)
SinkProcessor
Set all sinks to work with.
Sink specific parameters are passed to the processor via configure
setSinks
in interface SinkProcessor
sinks
- A non-null, non-empty list of sinks to be chosen from by the
processorCopyright © 2009-2017 Apache Software Foundation. All Rights Reserved.