All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebeaninternal.api.BinaryWritable Maven / Gradle / Ivy

There is a newer version: 15.8.1
Show newest version
package io.ebeaninternal.api;

import java.io.IOException;

/**
 * Messages that can be sent in binary form.
 * 

* Mainly RemoteTransactionEvent which is sent to cluster members. *

*/ public interface BinaryWritable { int TYPE_BEANIUD = 1; int TYPE_TABLEIUD = 2; int TYPE_CACHE = 3; int TYPE_TABLEMOD = 4; /** * Write message in binary format. */ void writeBinary(BinaryWriteContext out) throws IOException; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy