com.obsidiandynamics.blackstrom.codec.PackedForm 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;
/**
* Signifies that the implementing object represents an intermediate serialized form
* that can be further unpacked — reconstructing the original object graph — given the
* appropriate {@link Unpacker} implementation.
*/
public interface PackedForm {
int hashCode();
boolean equals(Object obj);
}