Uses of Class
org.apache.sshd.server.Signal
-
Packages that use Signal Package Description org.apache.sshd.server -
-
Uses of Signal in org.apache.sshd.server
Fields in org.apache.sshd.server with type parameters of type Signal Modifier and Type Field Description static NavigableMap<String,Signal>Signal. NAME_LOOKUP_TABLEAn un-modifiable case-insensitiveNavigableMapof the names of all availableSignalsstatic NavigableMap<Integer,Signal>Signal. NUMERIC_LOOKUP_TABLEAn un-modifiableNavigableMapof the numeric values of all availableSignalsstatic Set<Signal>Signal. SIGNALSMethods in org.apache.sshd.server that return Signal Modifier and Type Method Description static SignalSignal. get(int num)Retrieves a signal value given its numeric valuestatic SignalSignal. get(String name)Retrieves a signal value given its namestatic SignalSignal. 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.Methods in org.apache.sshd.server with parameters of type Signal Modifier and Type Method Description default voidEnvironment. 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 signalvoidSignalListener. signal(Channel channel, Signal signal)voidStandardEnvironment. signal(Channel channel, Signal signal)Method parameters in org.apache.sshd.server with type arguments of type Signal Modifier and Type Method Description voidEnvironment. addSignalListener(SignalListener listener, Collection<Signal> signals)Add a qualified listener for the specific signalsvoidStandardEnvironment. addSignalListener(SignalListener listener, Collection<Signal> signals)
-