connectorselectorhandler.java

来自「Examples to create your Conferencing Sys」· Java 代码 · 共 28 行

JAVA
28
字号
/*
 * Copyright 2004 WIT-Software, Lda. 
 * - web: http://www.wit-software.com 
 * - email: info@wit-software.com
 *
 * All rights reserved. Relased under terms of the 
 * Creative Commons' Attribution-NonCommercial-ShareAlike license.
 */
package io;

/**
 * Interface used for establishment a connection using non-blocking
 * operations.
 * 
 * Should be implemented by classes wishing to be notified 
 * when a Socket finishes connecting to a remote point. 
 * 
 * @author Nuno Santos
 */
public interface ConnectorSelectorHandler extends SelectorHandler {
  /**
   * Called by SelectorThread when the socket associated with the 
   * class implementing this interface finishes establishing a 
   * connection.
   */
  public void handleConnect();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?