Class NoSQLHandleFactory


  • public class NoSQLHandleFactory
    extends Object
    Factory class used to produce handles to operate on tables.
    • Constructor Detail

      • NoSQLHandleFactory

        public NoSQLHandleFactory()
    • Method Detail

      • createNoSQLHandle

        public static NoSQLHandle createNoSQLHandle​(NoSQLHandleConfig config)
        Creates a handle that can be used to access tables. The application must invoke NoSQLHandle.close(), when it is done accessing the system to free up resources associated with the handle.
        Parameters:
        config - the NoSQLHandle configuration parameters
        Returns:
        a valid NoSQLHandle instance, ready for use
        Throws:
        IllegalArgumentException - if an illegal configuration parameter is specified.
        See Also:
        NoSQLHandle.close()