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

com.github.thorbenkuck.network.encoding.ObjectDecoder Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.network.encoding;

import com.github.thorbenkuck.network.exceptions.FailedDecodingException;

import java.util.List;

public interface ObjectDecoder {

	List apply(byte[] bytes) throws FailedDecodingException;

}