@unlock


Description:

public StatusResponse @unlock (void* command_cookie = null, UnlockCommand*[] commands)

Unlock the key locked with get_locked

You should initialize the key and cas member in the UnlockCommand structure for the keys to get. All other members should be set to zero.

Example:

  UnlockCommand uc = UnlockCommand() {
key = "my-key",
cas = 0x666
};
UnlockCommand*[] commands = { &uc };
instance.unlock( null, commands );

Parameters:

command_cookie

A cookie passed to all of the notifications from this command

commands

the array containing the items to unlock

Returns:

The status of the operation