Interface SyncServiceClientFactory
-
public interface SyncServiceClientFactoryThe interface for a partial implementation ofServiceClientFactoryused tocreateclient stubs for aService.- Since:
- 3.0.0
- See Also:
ServiceClientFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <S> Screate(ServiceContext<S> context)
-
-
-
Method Detail
-
create
<S> S create(ServiceContext<S> context)
- Type Parameters:
S- the generic type of theserviceInterface. For flexibility and being not invasive this generic is not bound toService(S extends Service).- Parameters:
context- theServiceContext.- Returns:
- a new instance of the given
serviceInterfacethat is a client stub. May benullif this implementation does not handle services for the givenServiceContext. - See Also:
ServiceClientFactory.create(Class)
-
-