tcpprotocol.java

来自「提供ESB 应用mule源代码 提供ESB 应用mule源代码」· Java 代码 · 共 59 行

JAVA
59
字号
/* * $Id: TcpProtocol.java 10489 2008-01-23 17:53:38Z dfeist $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.transport.tcp;import org.mule.ResponseOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.net.Socket;/** * The TcpProtocol interface enables to plug different application level protocols on * a TcpConnector.  Note that this interface has lost the direct byte array write method. * Standard callers should (and will, since it matches the same signature, which is why * the method has not been deprecated) use the generic method instead.. */public interface TcpProtocol{    /**     * Reads the input stream and returns a whole message.     *      * @param is the input stream     * @return an array of byte containing a full message     * @throws IOException if an exception occurs     */    Object read(InputStream is) throws IOException;    /**     * Write the specified message to the output stream.     *      * @param os the output stream to write to     * @param data the data to write     * @throws IOException if an exception occurs     */    void write(OutputStream os, Object data) throws IOException;    /**     * This lets protocols encode a response stream.  If the protocol does not support a     * response stream (ie does not support streaming) then the stream should thrown an     * exception when used.     *     * @param socket The destination to write to     * @return A stream whose output will be encoded     * @throws IOException     */    ResponseOutputStream createResponse(Socket socket) throws IOException;}

⌨️ 快捷键说明

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