Example #1
0
        internal XIndexRemote(StorageEngineClient storageEngine, ILocator locator)
        {
            StorageEngine = storageEngine;
            Locator       = locator;

            operations = locator.CreateOperationCollection(100 * 1024);
        }
Example #2
0
        internal XTableRemote(StorageEngineClient storageEngine, Descriptor descriptor)
        {
            StorageEngine   = storageEngine;
            IndexDescriptor = descriptor;

            Commands = new CommandCollection(100 * 1024);
        }
Example #3
0
            public RemoteHeap(StorageEngineClient engine)
            {
                if (engine == null)
                {
                    throw new ArgumentNullException("engine");
                }

                Engine = engine;
            }