All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.andyshao.io.MessageDecoder Maven / Gradle / Ivy

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