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

se.l4.commons.io.ByteMessage Maven / Gradle / Ivy

The newest version!
package se.l4.commons.io;

import java.util.function.Predicate;

public interface ByteMessage
{
	long getTag();
	
	Bytes getData();
	
	static Predicate tag(int tag)
	{
		return (in) -> in.getTag() == tag;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy