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 private java.util.Map<Signal,java.util.Collection<SignalListener>>StandardEnvironment. listenersstatic java.util.NavigableMap<java.lang.String,Signal>Signal. NAME_LOOKUP_TABLEAn un-modifiable case-insensitiveNavigableMapof the names of all availableSignalsstatic java.util.NavigableMap<java.lang.Integer,Signal>Signal. NUMERIC_LOOKUP_TABLEAn un-modifiableNavigableMapof the numeric values of all availableSignalsstatic java.util.Set<Signal>Signal. SIGNALSAn un-modifiableSetof all the availableSignalsMethods 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(java.lang.String name)Retrieves a signal value given its namestatic SignalSignal. valueOf(java.lang.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 java.util.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, java.util.Collection<Signal> signals)Add a qualified listener for the specific signalsvoidStandardEnvironment. addSignalListener(SignalListener listener, java.util.Collection<Signal> signals)
-