*/
public static final void seriDelimitedOne(Object o, OutputStream output) {
if (o instanceof MessageLite) {
MessageLite gen = (MessageLite)o;
try {
gen.writeDelimitedTo(output);
} catch (IOException e) {
throw new SeriException("Failed to write data to the output stream.", e);
}
} else {
throw new SeriException("Message is not protobuf type: " + o.getClass());