コード例 #1
0
ファイル: SWEntityCount.cs プロジェクト: rajit1997/BangDB
 public void AddCreate(string entityName, string s, BangDBWindowType swType, BangDBCountType countType)
 {
     BangDBNative.AddCreateSWEntity(_swentity, entityName, entityName.Length, s, s.Length, (int)swType, (int)countType);
 }
コード例 #2
0
ファイル: SWEntityCount.cs プロジェクト: rajit1997/BangDB
 public void CreateEntity(string name, BangDBWindowType swType, BangDBCountType countType)
 {
     BangDBNative.CreateEntitySW(_swentity, name, name.Length, (int)swType, (int)countType);
 }
コード例 #3
0
 public SWSlotCount(int swTime, int swExpiry, BangDBCountType countType)
 {
     _swsc = BangDBNative.CreateSWCount(swTime, swExpiry, (int)countType, (int)BangDBWindowType.SlidingWindowUnit);
 }