70717273747576
this.getWork(); new Thread(new NotificationListener(this)).start(); } public void startSession(Session.ClientType clientType) { session = new Session(clientType); }
75767778798081828384
session = new Session(clientType); } public void changeSessionClientType(Session.ClientType clientType) { if (session == null) { session = new Session(clientType); } else { session.changeSessionClientType(clientType); } }