com.github.thorbenkuck.network.encoding.ObjectDecoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easy-net Show documentation
Show all versions of easy-net Show documentation
An EventStream driven, simple to use Client/Server framework
package com.github.thorbenkuck.network.encoding;
import com.github.thorbenkuck.network.exceptions.FailedDecodingException;
public interface ObjectDecoder {
Object apply(byte[] bytes) throws FailedDecodingException;
}