Uses of Enum Class
org.apache.sshd.server.Signal
Packages that use Signal
-
Uses of Signal in org.apache.sshd.server
Fields in org.apache.sshd.server with type parameters of type SignalModifier and TypeFieldDescriptionprivate final Map<Signal,
Collection<SignalListener>> StandardEnvironment.listeners
static final NavigableMap<String,
Signal> Signal.NAME_LOOKUP_TABLE
An un-modifiable case-insensitiveNavigableMap
of the names of all availableSignal
sstatic final NavigableMap<Integer,
Signal> Signal.NUMERIC_LOOKUP_TABLE
An un-modifiableNavigableMap
of the numeric values of all availableSignal
sSignal.SIGNALS
Methods in org.apache.sshd.server that return SignalModifier and TypeMethodDescriptionstatic Signal
Signal.get
(int num) Retrieves a signal value given its numeric valuestatic Signal
Retrieves a signal value given its namestatic Signal
Returns the enum constant of this class with the specified name.static Signal[]
Signal.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.sshd.server with parameters of type SignalModifier and TypeMethodDescriptiondefault void
Environment.addSignalListener
(SignalListener listener, Signal... signals) Add a qualified listener for the specific signalsprotected Collection<SignalListener>
StandardEnvironment.getSignalListeners
(Signal signal, boolean create) Retrieves the set of listeners registered for a signalvoid
void
Method parameters in org.apache.sshd.server with type arguments of type SignalModifier and TypeMethodDescriptionvoid
Environment.addSignalListener
(SignalListener listener, Collection<Signal> signals) Add a qualified listener for the specific signalsvoid
StandardEnvironment.addSignalListener
(SignalListener listener, Collection<Signal> signals)