com.github.andyshao.io.MessageDecoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.io;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Nov 4, 2015
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
*/
@FunctionalInterface
public interface MessageDecoder {
/**
* Decode the message
*
* @param context the message context
* @throws IOException any kinds of IO exception
* @throws UnsupportedEncodingException if the encoding is unsupported
*/
public void decode(MessageContext context) throws IOException , UnsupportedEncodingException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy