public FindCommand(MultithreadedContentDatabaseSession session, int?groupId, int skip, int limit)
 {
     this.session = session;
     this.groupId = groupId;
     this.skip    = skip;
     this.limit   = limit;
 }
 public PruneDatabaseCommand(MultithreadedContentDatabaseSession session, ulong commitId, byte commitType)
 {
     this.session    = session;
     this.commitId   = commitId;
     this.commitType = commitType;
 }
Example #3
0
 public OpenDatabaseCommand(MultithreadedContentDatabaseSession session, string pathname, int pageSize)
 {
     this.session  = session;
     this.pathname = pathname;
     this.pageSize = pageSize;
 }
 public CloseDatabaseCommand(MultithreadedContentDatabaseSession session)
 {
     this.session = session;
 }
 public WriteCommitCommand(MultithreadedContentDatabaseSession session, WriteCommit commit)
 {
     this.session = session;
     this.commit  = commit;
 }
Example #6
0
 public CountCommand(MultithreadedContentDatabaseSession session, int?groupId)
 {
     this.session = session;
     this.groupId = groupId;
 }