2.7.
CLASS: POOL
CHAPTER 2.
API REFERENCE
RPC name: get other config
Overview:
Get the other config field of the given pool.
Signature:
((string -> string) Map) get_other_config (session_id s, pool ref self)
Arguments:
type
name
description
pool ref
self
reference to the object
Return Type:
(string
→
string) Map
value of the field
RPC name: set other config
Overview:
Set the other config field of the given pool.
Signature:
void set_other_config (session_id s, pool ref self, (string -> string) Map value)
Arguments:
type
name
description
pool ref
self
reference to the object
(string
→
string) Map
value
New value to set
Return Type:
void
RPC name: add to other config
Overview:
Add the given key-value pair to the other config field of the given pool.
Signature:
void add_to_other_config (session_id s, pool ref self, string key, string value)
Arguments:
type
name
description
pool ref
self
reference to the object
string
key
Key to add
string
value
Value to add
Return Type:
void
45