An array with the following keys: "get_all", "open", "get", "put",
and "close".
Every entry must be a function name or an array in the following
format: array($obj, "method").
Note that the given array does not need to contain all of the
different scheme handler elements (although it can), but it only needs
to conform to the "handler" => "function" format described above.
Each of the individual scheme handler functions called are in the
formats below:
string get_all(resource processor, string scheme, string rest)
resource open(resource processor, string scheme, string rest)
int get(resource processor, resource fp, string &data)
int put(resource processor, resource fp, string data)
void close(resource processor, resource fp)