org.aoju.bus.socket.origin.Protocol Maven / Gradle / Ivy
/*
* The MIT License
*
* Copyright (c) 2017 aoju.org All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.aoju.bus.socket.origin;
import java.nio.ByteBuffer;
/**
* 消息传输采用的协议,
* 根据通信双方约定的协议规范实现{@code Protocol}接口,
* 使用时将该实现类注册至服务启动类{@link AioQuickClient}/{@link AioQuickServer}
* 注意:框架本身的所有Socket链路复用同一个Protocol,
* 请勿在其实现类的成员变量中存储特定链路的数据。
*
* @author Kimi Liu
* @version 5.0.8
* @since JDK 1.8+
*/
public interface Protocol {
/**
* 对于从Socket流中获取到的数据采用当前Protocol的实现类协议进行解析。
*
* @param readBuffer 待处理的读buffer
* @param session 本次需要解码的session
* @return 本次解码成功后封装的业务消息对象, 返回null则表示解码未完成
*/
T decode(final ByteBuffer readBuffer, AioSession session);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy