Package org.refcodes.io
Interface ByteDatagramOutputStream
-
- All Superinterfaces:
org.refcodes.component.Closable
public interface ByteDatagramOutputStream extends org.refcodes.component.Closable(asOutputStreamdoes not provide some useful *interface*)- See Also:
OutputStream
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidflush()Flush.voidwrite(byte[] b)Write.voidwrite(byte[] b, int off, int len)Write.voidwrite(int b)Write.
-
-
-
Method Detail
-
write
void write(int b) throws org.refcodes.component.OpenExceptionWrite.- Parameters:
b- the b- Throws:
org.refcodes.component.OpenException- the open exception
-
write
void write(byte[] b) throws org.refcodes.component.OpenExceptionWrite.- Parameters:
b- the b- Throws:
org.refcodes.component.OpenException- the open exception
-
write
void write(byte[] b, int off, int len) throws org.refcodes.component.OpenExceptionWrite.- Parameters:
b- the boff- the offlen- the len- Throws:
org.refcodes.component.OpenException- the open exception
-
flush
void flush() throws org.refcodes.component.OpenExceptionFlush.- Throws:
org.refcodes.component.OpenException- the open exception
-
-