Behaviours: gen_server.
| all/0 | |
| code_change/3 | |
| get/1 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| id/1 | |
| init/1 | |
| insert/1 | |
| insert/2 | |
| load/1 | |
| lookup/1 | |
| lookup_enum_type/1 | |
| reset/0 | |
| resolve_root_type/2 | |
| start_link/0 | |
| terminate/2 |
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()) -> true
insert(S::any(), X2::any()) -> true | false
load(S::any()) -> ok | {error, Reason}
lookup(ID::binary() | 'ROOT') -> schema_object() | not_found
lookup_enum_type(EnumValue::binary()) -> binary() | not_found
reset() -> ok
resolve_root_type(X1::undefined | operation_type(), Root_schema::root_schema()) -> undefined | binary()
start_link() -> any()
terminate(X1::any(), X2::any()) -> any()
Generated by EDoc