Package org.red5.server.service
Interface IServiceResolver
- All Known Implementing Classes:
ContextServiceResolver
,HandlerServiceResolver
,ScopeServiceResolver
public interface IServiceResolver
Interface for objects that resolve service names to services.
This is used by the ServiceInvoker to lookup the service to invoke a method on.
- Author:
- The Red5 Project, Joachim Bauch (jojo@struktur.de)
-
Method Summary
Modifier and TypeMethodDescriptionresolveService
(IScope scope, String serviceName) Search for a service with the given name in the scope.
-
Method Details
-
resolveService
Search for a service with the given name in the scope.- Parameters:
scope
- the scope to search inserviceName
- the name of the service- Returns:
- the object implementing the service or
null
if service doesn't exist
-