Learn how to evaluate and integrate the VNC SDK

We're here if you need help.

DataStore.Callback

vncsdk.DataStore.Callback

Callback providing custom storage of data used by the SDK.

Method Summary

Modifier and Type Method and Description
vncsdk.DataBuffer or None

get(key)

Requests data stored in your custom data store.

put(key, value)

Requests storing data in your custom data store.

Methods

DataStore.Callback.get(key)

Requests data stored in your custom data store.

For more information, see vnc_DataStore_Callback::get.

Parameters:key (str or None) –
Return type:vncsdk.DataBuffer or None
DataStore.Callback.put(key, value)

Requests storing data in your custom data store.

For more information, see vnc_DataStore_Callback::put.

Parameters:
Returns:

None

×