示例#1
0
 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
 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);
 }