Behaviours: gen_server.
all() -> [any()]
code_change(OldVsn::term(), S, Aux::term()) -> {ok, S}
get(ID::binary() | 'ROOT') -> schema_object()
handle_call(M, From::any(), S) -> {reply, term(), S}
handle_cast(Msg::any(), S) -> {noreply, S}
handle_info(Msg::term(), S) -> {noreply, S}
id(Root_schema) -> any()
init(X1::[]) -> {ok, #state{}}
insert(S::any()) -> ok
insert(S::any(), X2::any()) -> ok | {error, Reason::term()}
load(S::any()) -> ok | {error, Reason}
load_schema(Root_schema::#root_schema{}) -> ok
lookup(ID::binary() | 'ROOT') -> schema_object() | not_found
lookup_interface_implementors(IFaceID::binary()) -> [binary()]
reset() -> ok
resolve_root_type(X1::undefined | operation_type(), Root_schema::root_schema()) -> undefined | binary()
start_link() -> any()
terminate(X1::any(), X2::any()) -> any()
validate_enum(EnumID::binary(), EnumValue::binary()) -> ok | not_found | {other_enums, [#enum_type{}]}
Generated by EDoc