Package com.hazelcast.client.config
Class ClientConfigRecognizer
- java.lang.Object
-
- com.hazelcast.internal.config.AbstractConfigRecognizer
-
- com.hazelcast.client.config.ClientConfigRecognizer
-
- All Implemented Interfaces:
ConfigRecognizer
public class ClientConfigRecognizer extends com.hazelcast.internal.config.AbstractConfigRecognizer
ConfigRecognizer
implementation that recognizes Hazelcast client declarative configurations based on an extensible set of built-inConfigRecognizer
implementations.
-
-
Constructor Summary
Constructors Constructor Description ClientConfigRecognizer()
Constructs an instance with the built-in set ofConfigRecognizer
implementations only.ClientConfigRecognizer(ConfigRecognizer... customRecognizers)
Constructs an instance with the built-in set ofConfigRecognizer
implementations extended with ones provided incustomRecognizers
.
-
-
-
Constructor Detail
-
ClientConfigRecognizer
public ClientConfigRecognizer() throws java.lang.Exception
Constructs an instance with the built-in set ofConfigRecognizer
implementations only.- Throws:
java.lang.Exception
- If there is an unexpected error occur during instantiation.
-
ClientConfigRecognizer
public ClientConfigRecognizer(ConfigRecognizer... customRecognizers) throws java.lang.Exception
Constructs an instance with the built-in set ofConfigRecognizer
implementations extended with ones provided incustomRecognizers
.- Parameters:
customRecognizers
- The custom config recognizers to use besides the built-in ones.- Throws:
java.lang.Exception
- If there is an unexpected error occur during instantiation.
-
-