boot static method

void boot()

Implementation

static void boot() {
  if (_boot) return;
  _boot = true;

  DBObjectAdapter.boot();

  DBObjectAdapter.registerAdapter(
    ['object.memory', 'obj.memory'],
    DBObjectMemoryAdapter,
    _instantiate,
  );
}