ByteCodec.java 206 Bytes
package com.diligrp.cashier.shared.codec;

import java.io.IOException;

public interface ByteCodec<T> {

    T decode(byte[] payload) throws IOException;

    byte[] encode(T payload) throws IOException;
}