Package com.linecorp.armeria.client
Interface ClientFactoryProvider
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@UnstableApi @FunctionalInterface public interface ClientFactoryProvider
Creates a new
ClientFactory
dynamically via Java SPI (Service Provider Interface).-
Method Summary
Modifier and Type Method Description ClientFactory
newFactory(ClientFactory httpClientFactory)
Creates a newClientFactory
.
-
Method Details
-
newFactory
Creates a newClientFactory
.- Parameters:
httpClientFactory
- the coreClientFactory
which is capable of handling the"none"
serialization format.
-