예제 #1
0
  protected void implRegister(SelectionKeyImpl ski) {
    synchronized (closeLock) {
      if (closed) throw new ClosedSelectorException();

      // Check to see if the array is large enough
      if (channelArray.length == totalChannels) {
        // Make a larger array
        int newSize = pollWrapper.totalChannels * 2;
        SelectionKeyImpl temp[] = new SelectionKeyImpl[newSize];
        // Copy over
        for (int i = channelOffset; i < totalChannels; i++) temp[i] = channelArray[i];
        channelArray = temp;
        // Grow the NativeObject poll array
        pollWrapper.grow(newSize);
      }
      channelArray[totalChannels] = ski;
      ski.setIndex(totalChannels);
      pollWrapper.addEntry(ski.channel);
      totalChannels++;
      keys.add(ski);
    }
  }