iconnectionhandler.java

来自「piweurrrrq i o fhsadhfka fd dskajc zxkjc」· Java 代码 · 共 26 行

JAVA
26
字号
/* * Copyright (c) 2000 Lyrisoft Solutions, Inc. * Used by permission */package com.lyrisoft.chat;import com.lyrisoft.chat.IConnectionListener;public interface IConnectionHandler {    /**     * Queue a message headed outbound     */    public void queueMessage(String message);    public void sendImmediately(String message);    /**     * @param notify to notify the ConnectionListener.  Should be true for unexpected shutdowns     *               (like if there is a socket error), and false otherwise (if client called this     *                method on purpose)     */    public void shutdown(boolean notify);    public void setListener(IConnectionListener listener);}

⌨️ 快捷键说明

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