Ejemplo n.º 1
0
  public synchronized void receiveEnd(short channel, End end) {
    SessionEndpoint endpoint = _receivingSessions[channel];
    if (endpoint != null) {
      _receivingSessions[channel] = null;

      endpoint.end(end);
    } else {
      // TODO error
    }
  }