public class DefaultSinkProcessor extends Object implements SinkProcessor, ConfigurableComponent
Constructor and Description |
---|
DefaultSinkProcessor() |
Modifier and Type | Method and Description |
---|---|
void |
configure(ComponentConfiguration conf) |
void |
configure(Context context)
Request the implementing class to (re)configure itself.
|
LifecycleState |
getLifecycleState()
Return the current state of the service or component.
|
Sink.Status |
process()
Handle a request to poll the owned sinks.
|
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.
|
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 configure(Context context)
Configurable
Request the implementing class to (re)configure itself.
When configuration parameters are changed, they must be reflected by the component asap.
There are no thread safety guarantees on when configure might be called.
configure
in interface Configurable
public Sink.Status process() throws EventDeliveryException
SinkProcessor
Handle a request to poll the owned sinks.
The processor is expected to call Sink.process() on
whatever sink(s) appropriate, handling failures as appropriate and
throwing EventDeliveryException
when there is a failure to
deliver any events according to the delivery policy defined by the
sink processor implementation. See specific implementations of this
interface for delivery behavior and policies.
process
in interface SinkProcessor
READY
if events were successfully consumed,
or BACKOFF
if no events were available in the channel to consume.EventDeliveryException
- if the behavior guaranteed by the processor
couldn't be carried out.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
processorpublic void configure(ComponentConfiguration conf)
configure
in interface ConfigurableComponent
Copyright © 2009–2019 Apache Software Foundation. All rights reserved.