forked from TrueCloudLab/frostfs-sdk-java
5 lines
119 B
Java
5 lines
119 B
Java
package info.frostfs.sdk.tools;
|
|
|
|
public interface MarshalFunction<T> {
|
|
int marshal(byte[] buf, int offset, T t);
|
|
}
|