📄 iconnectionhandler.java
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -