Package org.apache.accumulo.core.client
Interface AccumuloClient.ClientFactory<T>
-
- All Known Subinterfaces:
AccumuloClient.ConnectionOptions<T>
,AccumuloClient.FromOptions<T>
,AccumuloClient.SaslOptions<T>
,AccumuloClient.SslOptions<T>
- All Known Implementing Classes:
ClientContext.ClientBuilderImpl
- Enclosing interface:
- AccumuloClient
public static interface AccumuloClient.ClientFactory<T>
Builds AccumuloClient or client Properties after all options have been specified- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
build()
Builds AccumuloClient or client PropertiesAccumuloClient.ClientFactory<T>
withUncaughtExceptionHandler(Thread.UncaughtExceptionHandler ueh)
Override default handling of uncaught exceptions in client threads
-
-
-
Method Detail
-
withUncaughtExceptionHandler
AccumuloClient.ClientFactory<T> withUncaughtExceptionHandler(Thread.UncaughtExceptionHandler ueh)
Override default handling of uncaught exceptions in client threads- Parameters:
ueh
- UncaughtExceptionHandler implementation- Returns:
- AccumuloClient or Properties
- Since:
- 2.1.0
-
build
T build()
Builds AccumuloClient or client Properties- Returns:
- AccumuloClient or Properties
-
-