cabbie-sync
Version:
A synchronous webdriver client
57 lines (50 loc) • 1.18 kB
Flow
/**
* @flow
* This file is generated automatically, run npm run build to re-generate.
**/
import type Driver from './driver';
import addDebugging from './add-debugging';
import BaseClass from './base-class';
/*
* Base class for session storage and base storage
*/
class BaseStorage extends BaseClass {
/*
* Get all keys of the storage
*/
getKeys(): Array<string> {
return this.requestJSON('GET', '');
}
/*
* Get the storage item for the given key
*/
getItem(key: string): string {
return this.requestJSON('GET', '/key/' + key);
}
/*
* Set the storage item for the given key
*/
setItem(key: string, value: string): void {
this.requestJSON('POST', '', { key: key, value: value });
}
/*
* Remove the storage item for the given key
*/
removeItem(key: string): void {
this.requestJSON('DELETE', '/key/' + key);
}
/*
* Clear the storage
*/
clear(): void {
this.requestJSON('DELETE', '');
}
/*
* Get the number of items in the storage
*/
getSize(): number {
return this.requestJSON('GET', '/size');
}
}
addDebugging(BaseStorage, { baseClass: true });
export default BaseStorage;