Lines Matching refs:Session
162 - Added X11 forwarding support. Please consult Session.requestX11Forwarding().
168 - Added startSubSystem() method to the Session class. Now it is possible to implement subsystems,
171 - For advanced users: there is now a much better condition wait interface in the Session class.
173 The Session.waitUntilDataAvailable() method still works, but is marked as deprecated.
176 method on a Session object will immediatelly raise the ChannelCondition.CLOSED/EOF conditions
181 - The behavior of Session.close() has changed. If you *kill* a Session (i.e., call Session.close()
183 be raised for both stdout and stderr. Further incoming data (for that particular Session) will
192 "tail -f /dev/null" (which should do nothing forever) and then concurrently close the Session
196 - The Session code does not anymore make use of the synchronized attribute for any of its methods.
197 This has the advantage that a call to Session.close() will never by blocked by concurrent
198 calls to the Session object. However, note that in the worst case the call may still block until
234 - Cleanup up Session class, removed unnecessary IOExceptions.