BlueSkyStoreAsync *async = bluesky_store_async_new(store);
async->op = STORE_OP_GET;
async->key = g_strdup(key);
- store->impl->submit(store->handle, async);
+ bluesky_store_async_submit(async);
bluesky_store_async_wait(async);
async->key = g_strdup(key);
bluesky_string_ref(val);
async->data = val;
- store->impl->submit(store->handle, async);
+ bluesky_store_async_submit(async);
bluesky_store_async_wait(async);
bluesky_store_async_unref(async);