org.jgroups.util.SizeStreamable Maven / Gradle / Ivy
package org.jgroups.util;
/**
* Interface implementing Streamable and returning the size of the marshalled object. Might get merged into
* Streamable itself in 4.0.
* @author Bela Ban
* @since 3.3
*/
public interface SizeStreamable extends Streamable {
/** Returns the size (in bytes) of the marshalled object */
int size();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy