Package com.db4o.cs.foundation
Interface Socket4
-
- All Known Implementing Classes:
NetworkSocket
,NetworkSocketBase
,Socket4Decorator
public interface Socket4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
void
flush()
boolean
isConnected()
Socket4
openParallelSocket()
int
read(byte[] buffer, int offset, int count)
void
setSoTimeout(int timeout)
void
write(byte[] bytes, int offset, int count)
-
-
-
Method Detail
-
close
void close() throws java.io.IOException
- Throws:
java.io.IOException
-
flush
void flush() throws java.io.IOException
- Throws:
java.io.IOException
-
setSoTimeout
void setSoTimeout(int timeout)
-
isConnected
boolean isConnected()
-
read
int read(byte[] buffer, int offset, int count) throws java.io.IOException
- Throws:
java.io.IOException
-
write
void write(byte[] bytes, int offset, int count) throws java.io.IOException
- Throws:
java.io.IOException
-
openParallelSocket
Socket4 openParallelSocket() throws java.io.IOException
- Throws:
java.io.IOException
-
-