toByteArrayStream method

  1. @override
void toByteArrayStream(
  1. ByteSink out
)

Writes the current object to the output stream.

@param out the output stream receiving the object @throws IOException if an exception occurs while writing to the stream

Implementation

@override
void toByteArrayStream(ByteSink out) {
  SerializerHelper.writeLong(out, serialVersionUID);
  SerializerHelper.writeString(out, protocol);
  SerializerHelper.writeString(out, _pluginId);
  SerializerHelper.writeString(out, path);
  SerializerHelper.writeLong(out, serialVersionUID);
}