equal
deleted
inserted
replaced
83 class Handler extends Session.Protocol_Handler |
83 class Handler extends Session.Protocol_Handler |
84 { |
84 { |
85 private var session: Session = null |
85 private var session: Session = null |
86 private var monitoring: Future[Unit] = Future.value(()) |
86 private var monitoring: Future[Unit] = Future.value(()) |
87 |
87 |
88 override def init(init_session: Session): Unit = synchronized |
88 override def init(session: Session): Unit = synchronized |
89 { |
89 { |
90 session = init_session |
90 this.session = session |
91 } |
91 } |
92 |
92 |
93 override def exit(): Unit = synchronized |
93 override def exit(): Unit = synchronized |
94 { |
94 { |
95 session = null |
95 session = null |