Пример #1
0
 public static extern unsafe void ice_storage_kv_hash_map_ext_remove(
     CoreHashMapExt *hm,
     string k,
     string map_key,
     KVStorageRemoveItemCallback callback,
     CoreResource *call_with
     );
Пример #2
0
 public KeyValueStorageHashMapExt GetHashMapExt()
 {
     unsafe {
         CoreHashMapExt *hm = Core.ice_storage_kv_get_hash_map_ext(handle);
         if (hm == null)
         {
             throw new System.NullReferenceException();
         }
         return(new KeyValueStorageHashMapExt(this, hm));
     }
 }
Пример #3
0
 public unsafe KeyValueStorageHashMapExt(KeyValueStorage _owner, CoreHashMapExt *hm)
 {
     owner  = _owner;
     handle = hm;
 }