Behaviours: gen_server.
| binary_to_type/1 | |
| code_change/3 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| lookup_all/1 | |
| lookup_module/2 | |
| register/3 | |
| start_link/0 | |
| terminate/2 | |
| unregister/2 |
binary_to_type(TypeBin::binary()) -> atom() | rabbit_types:error(not_found)
code_change(OldVsn, State, Extra) -> any()
handle_call(Request, From, State) -> any()
handle_cast(Request, State) -> any()
handle_info(Message, State) -> any()
init(X1) -> any()
lookup_all(Class::atom()) -> [{atom(), atom()}]
lookup_module(Class::atom(), T::atom()) -> rabbit_types:ok_or_error2(atom(), not_found)
register(Class::atom(), TypeName::binary(), ModuleName::atom()) -> ok
start_link() -> rabbit_types:ok_pid_or_error()
terminate(Reason, State) -> any()
unregister(Class::atom(), TypeName::binary()) -> ok
Generated by EDoc