get abstract method

Stream<String> get(
  1. String path
)

Obtains children of the database node under a given path.

If the node values are strings, those strings are obtained without change. Otherwise, the values are converted into JSONs in form of strings and yielded.

It is expected that the implementations are asynchronous and do not block the calling site for a long time (i.e. while performing networking).

Implementation

Stream<String> get(String path);