Skip to content

Instantly share code, notes, and snippets.

@andresrc
Created August 17, 2012 11:12
Show Gist options
  • Save andresrc/3378043 to your computer and use it in GitHub Desktop.
Save andresrc/3378043 to your computer and use it in GitHub Desktop.
Bocas Value (basic operations)
public class BocasValue implements InputSupplier<InputStream> {
/** Returns the payload size in bytes (if known). */
public Integer getSize();
/** Copies and returns the internal data. */
public byte[] toByteArray() throws IOException;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment