Deveel.Data.Store.ObjectStore.ObjectStore C# (CSharp) 메소드

ObjectStore() 공개 메소드

public ObjectStore ( int id, IStore store ) : System.IO.Compression
id int
store IStore
리턴 System.IO.Compression
        public ObjectStore(int id, IStore store)
        {
            if (id < 0)
                throw new ArgumentOutOfRangeException("id");
            if (store == null)
                throw new ArgumentNullException("store");

            Id = id;
            this.store = store;
            fixedList = new FixedRecordList(store, 30);
        }