mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-16 04:39:54 +01:00
Changed the root package from net.sf.briar to org.briarproject.
This commit is contained in:
10
briar-api/src/org/briarproject/api/serial/Consumer.java
Normal file
10
briar-api/src/org/briarproject/api/serial/Consumer.java
Normal file
@@ -0,0 +1,10 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user