Sha256: fe4d786b69255213b73dd1bb27d7db7846e394f65b3b083fdc0e6e223df72e15
Contents?: true
Size: 892 Bytes
Versions: 14
Compression:
Stored size: 892 Bytes
Contents
-module(cap_internal_apps_api). % start_link() -> % bertrpc_module:start_link(?MODULE, [], []). % % init([]) -> % {ok, state}. % % % bert_call(call, [Node, Id, Module, Function, Args], _, State) -> % try % cap_machine_apps:call(Node, Id, Module, Function, Args) % of % {ok, Result} -> {reply, Result, State}; % {error, Error} -> {error, Error, State} % catch % throw:T -> {error, T, State} % end; % bert_call(cast, [Node, Id, Module, Function, Args], _, State) -> % try % cap_machine_apps:cast(Node, Id, Module, Function, Args) % of % {ok, Result} -> {reply, Result, State}; % {error, Error} -> {error, Error, State} % catch % throw:T -> {error, T, State} % end. % % bert_cast(_, _, _Extra, State) -> % {noreply, State}. % % % terminate(_Reason, _State) -> % ok. % % code_change(_OldVsn, State, _Extra) -> % {ok, State}.
Version data entries
14 entries across 14 versions & 1 rubygems