1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 04:15:35 +02:00

Update readme and comments for daytime

This commit is contained in:
Martin Oberhuber 2006-07-18 11:39:48 +00:00
parent 941fff5c36
commit 090f1b7bae
2 changed files with 10 additions and 8 deletions

View file

@ -32,14 +32,15 @@ AbstractSystemViewAdapter. The DaytimeService is rather simple, since
queries are fast enough to use a connectionless service. queries are fast enough to use a connectionless service.
__Known Issues:__ __Known Issues:__
* Entering Username and Password should not be required.
* Manual Refresh after connect should not be required.
* When something goes wrong during connect, the error message * When something goes wrong during connect, the error message
does not give enough information about the cause of the error. does not give enough information about the cause of the error.
* The example defines a Service for its task; there might be * Should define a second service, that uses UDP for getting the
applications where this is not required or desired. A simpler daytime. This would show the advantages of ServiceSubsystem.
example should be provided that only defines a Subsystem but The Tutorial example (developer) is good for showing service-less
no Service, ConnectorService or ConnectorServiceManager. subsystems.
* ConnectorService / ConnectorServiceManager should exist in a
simpler default implementation such that not every new service
or subsystem implements the same over and over again (bug 150928).
__Enabling the Daytime Service on a Remote Host:__ __Enabling the Daytime Service on a Remote Host:__
In order for the example to work, the service on TCP port 13 must be In order for the example to work, the service on TCP port 13 must be

View file

@ -55,8 +55,9 @@ public class DaytimeConnectorService extends AbstractConnectorService {
} }
//if no exception is thrown, we consider ourselves connected! //if no exception is thrown, we consider ourselves connected!
fIsConnected = true; fIsConnected = true;
//TODO force a refresh of the Viewer in order to show the resource // Fire comm event to signal state changed --
// Fire comm event to signal state changed // Not really necessary since SubSystem.connect(Shell, boolean) does
// SystemRegistry.connectedStatusChange(this, true, false) at the end
notifyConnection(); notifyConnection();
} }