com.obsidiandynamics.blackstrom.codec.Unpacker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blackstrom-core Show documentation
Show all versions of blackstrom-core Show documentation
Transactional event fabric for the JVM
The newest version!
package com.obsidiandynamics.blackstrom.codec;
public interface Unpacker {
Class extends P> getPackedType();
Object unpack(P packed, Class> contentClass);
}