Sha256: 42f21cb9450f6886b50278e09e9ca4e7305ca02b0eaa22bfd672f6abb4e14a1f
Contents?: true
Size: 560 Bytes
Versions: 76
Compression:
Stored size: 560 Bytes
Contents
package j2me.nio.channels; import java.io.IOException; import j2me.nio.ByteBuffer; public abstract class Pipe { public static abstract class SinkChannel { public abstract void close() throws IOException; public abstract int write(ByteBuffer src) throws IOException; } public static abstract class SourceChannel { public abstract void close() throws IOException; public abstract int read(ByteBuffer dst) throws IOException; } }
Version data entries
76 entries across 76 versions & 1 rubygems