org.datashare.client |
|
Java Source File Name | Type | Comment |
BroadCastClient.java | Class | This class will provide the methods necessary to establish command/status and
data connections over a network to a DataShareServer, and provide the input and
output methods needed to share data with other BroadCast clients.
BroadCastClients do not care to know about other clients that they are sending data to
(they have no way to find out about other clients, if you need to know about other clients,
use the more general DataShareClient class). |
BroadCastInterface.java | Interface | Must be implemented by any class that uses the BroadCastClient class
for a data connection to the DataShareServer. |
ClientDataReceiverInterface.java | Interface | |
DataShareClient.java | Class | This class will provide the methods necessary to establish the commandStatusChannel
to a DataShare server, activate it, and create a data channel for sharing data (no history). |
DataShareClientInterface.java | Interface | Must be implemented by any class that uses the DataShareClient class
for a data connection to the DataShareServer. |
DataShareConnection.java | Class | This is the client side implementation of our network connection (formerly called channels)
We use this to send data, and it is provided the object that will be given any received data
and the notification if something bad happens to this socket... |