Package | Description |
---|---|
org.apache.sshd.server |
Modifier and Type | Field and Description |
---|---|
static NavigableMap<String,Signal> |
Signal.NAME_LOOKUP_TABLE
An un-modifiable case-insensitive
NavigableMap of the names of all available Signal s |
static NavigableMap<Integer,Signal> |
Signal.NUMERIC_LOOKUP_TABLE
An un-modifiable
NavigableMap of the numeric values of all available Signal s |
static Set<Signal> |
Signal.SIGNALS
|
Modifier and Type | Method and Description |
---|---|
static Signal |
Signal.get(int num)
Retrieves a signal value given its numeric value
|
static Signal |
Signal.get(String name)
Retrieves a signal value given its name
|
static Signal |
Signal.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Signal[] |
Signal.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
default void |
Environment.addSignalListener(SignalListener listener,
Signal... signals)
Add a qualified listener for the specific signals
|
protected Collection<SignalListener> |
StandardEnvironment.getSignalListeners(Signal signal,
boolean create)
Retrieves the set of listeners registered for a signal
|
void |
StandardEnvironment.signal(Channel channel,
Signal signal) |
void |
SignalListener.signal(Channel channel,
Signal signal) |
Modifier and Type | Method and Description |
---|---|
void |
Environment.addSignalListener(SignalListener listener,
Collection<Signal> signals)
Add a qualified listener for the specific signals
|
void |
StandardEnvironment.addSignalListener(SignalListener listener,
Collection<Signal> signals) |
Copyright © 2008–2024 The Apache Software Foundation. All rights reserved.