@InterfaceAudience.Public @InterfaceStability.Stable public abstract class AbstractSink extends Object implements Sink, LifecycleAware
Sink.Status
Constructor and Description |
---|
AbstractSink() |
Modifier and Type | Method and Description |
---|---|
Channel |
getChannel() |
LifecycleState |
getLifecycleState()
Return the current state of the service or component.
|
String |
getName() |
void |
setChannel(Channel channel)
Sets the channel the sink will consume from
|
void |
setName(String name) |
void |
start()
Starts a service or component.
|
void |
stop()
Stops a service or component.
|
String |
toString() |
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 Channel getChannel()
getChannel
in interface Sink
public void setChannel(Channel channel)
Sink
Sets the channel the sink will consume from
setChannel
in interface Sink
channel
- The channel to be polledpublic LifecycleState getLifecycleState()
LifecycleAware
Return the current state of the service or component.
getLifecycleState
in interface LifecycleAware
public void setName(String name)
setName
in interface NamedComponent
public String getName()
getName
in interface NamedComponent
Copyright © 2009–2019 Apache Software Foundation. All rights reserved.