mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-15 20:29:52 +01:00
11 lines
199 B
Java
11 lines
199 B
Java
package org.briarproject.api.serial;
|
|
|
|
import java.io.IOException;
|
|
|
|
public interface Consumer {
|
|
|
|
void write(byte b) throws IOException;
|
|
|
|
void write(byte[] b, int off, int len) throws IOException;
|
|
}
|