allServicesForGraph: |
This method gives information about the availability of services for a particular graph
- (id <ECIterator>) allServicesForGraph: (id <FTGraph>) aGraph
allServicesForNode |
This method gives information about the availability of services for a particular node
See Also:
- allServicesForNode:ofGraph:
- (id <ECIterator>) allServicesForNode: (id <FTNode>) aNode ofGraph: (id <FTGraph>) aGraph;
allServicesForNode:ofGraph: |
This method gives information about the availability of services for a particular node
See Also:
- allServicesForNode
- (id <ECIterator>) allServicesForNode: (id <FTNode>) aNode ofGraph: (id <FTGraph>) aGraph;
registerServiceWithId |
This method is used to register a service.
See Also:
- registerServiceWithId:withVersion:withServiceLoader:
- registerServiceWithId: (NSString *) serviceId withVersion: (id <FTVersion>) serviceVersion withServiceLoader: (id <FTServiceLoader>) serviceLoader;
serviceId
- identifier for the service
serviceVersion
- version of this service
serviceLoader
- loader of this service
The current implementation simply removes older version if newer ones are being registered.
registerServiceWithId:withVersion:withServiceLoader: |
This method is used to register a service.
See Also:
- registerServiceWithId
- registerServiceWithId: (NSString *) serviceId withVersion: (id <FTVersion>) serviceVersion withServiceLoader: (id <FTServiceLoader>) serviceLoader;
serviceId
- identifier for the service
serviceVersion
- version of this service
serviceLoader
- loader of this service
The current implementation simply removes older version if newer ones are being registered.
serviceWithId((NSString *), (id
|
returns the specified service
See Also:
- serviceWithId:forGraph:forNode:
- (id <FTService>) serviceWithId: (NSString *) aServiceId forGraph: (id <FTGraph>) aGraph forNode: (id <FTNode>) aNode;
serviceWithId((NSString *), (id
|
returns the specified service
See Also:
- serviceWithId:forGraph:
- (id <FTService>) serviceWithId: (NSString *) aServiceId forGraph: (id <FTGraph>) aGraph;
serviceWithId:forGraph: |
returns the specified service
See Also:
- serviceWithId
- (id <FTService>) serviceWithId: (NSString *) aServiceId forGraph: (id <FTGraph>) aGraph;
serviceWithId:forGraph:forNode: |
returns the specified service
See Also:
- serviceWithId
- (id <FTService>) serviceWithId: (NSString *) aServiceId forGraph: (id <FTGraph>) aGraph forNode: (id <FTNode>) aNode;
switchAllServicesToMode: |
Switches all registered services to the specified mode
- switchAllServicesToMode: (ft_serviceMode_t) serviceMode;
serviceMode
- mode to switch to
unregisterAllVersionsOfServiceWithId: |
removes all versions of the specified service
- unregisterAllVersionsOfServiceWithId: (NSString *) serviceId;
(Last Updated August 27, 2006)