Package alluxio.table.common.udb
Class UnderDatabaseRegistry
- java.lang.Object
-
- alluxio.table.common.udb.UnderDatabaseRegistry
-
public class UnderDatabaseRegistry extends java.lang.ObjectThe registry of under database implementations.
-
-
Constructor Summary
Constructors Constructor Description UnderDatabaseRegistry()Creates an instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UnderDatabasecreate(UdbContext udbContext, java.lang.String type, UdbConfiguration configuration)Creates a new instance of anUnderDatabase.voidrefresh()Refreshes the registry by service loading classes.
-
-
-
Method Detail
-
refresh
public void refresh()
Refreshes the registry by service loading classes.
-
create
public UnderDatabase create(UdbContext udbContext, java.lang.String type, UdbConfiguration configuration)
Creates a new instance of anUnderDatabase.- Parameters:
udbContext- the db contexttype- the udb typeconfiguration- the udb configuration- Returns:
- a new udb instance
-
-