Interface IConnector
-
- All Superinterfaces:
java.lang.Runnable
- All Known Implementing Classes:
SocketConnector
public interface IConnector extends java.lang.Runnable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clearServiceList()
void
finalizeConnector()
void
initializeConnector()
void
refreshServiceList(java.util.Map<java.lang.String,IService> registredServices)
void
run()
When called, should wait for one request, answer it and return.
-
-
-
Method Detail
-
initializeConnector
void initializeConnector() throws OntologyConnectorException
- Throws:
OntologyConnectorException
-
finalizeConnector
void finalizeConnector() throws OntologyConnectorException
- Throws:
OntologyConnectorException
-
run
void run()
When called, should wait for one request, answer it and return.- Specified by:
run
in interfacejava.lang.Runnable
- Throws:
MalformedYarpMessageException
-
refreshServiceList
void refreshServiceList(java.util.Map<java.lang.String,IService> registredServices)
-
clearServiceList
void clearServiceList()
-
-