Package net.schmizz.sshj.common
Interface ErrorNotifiable
-
- All Known Subinterfaces:
Channel
,Channel.Direct
,Channel.Forwarded
,Service
,Session
,Session.Command
,Session.Shell
,Session.Subsystem
- All Known Implementing Classes:
AbstractChannel
,AbstractDirectChannel
,AbstractForwardedChannel
,AbstractService
,ChannelInputStream
,ChannelOutputStream
,ConnectionImpl
,DirectConnection
,DirectTCPIPChannel
,LocalPortForwarder.ForwardedChannel
,RemotePortForwarder.ForwardedTCPIPChannel
,SessionChannel
,UserAuthImpl
,X11Forwarder.X11Channel
public interface ErrorNotifiable
API for classes that are capable of being notified on an error so they can cleanup.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ErrorNotifiable.Util
Utility functions.
-
Method Summary
Modifier and Type Method Description void
notifyError(SSHException error)
Notifies this object of anerror
.
-
-
-
Method Detail
-
notifyError
void notifyError(SSHException error)
Notifies this object of anerror
.
-
-