ByteDecoder.java 159 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 package com.diligrp.assistant.shared.codec; import java.io.IOException; public interface ByteDecoder<T> { T decode(byte[] payload) throws IOException; }