-
Notifications
You must be signed in to change notification settings - Fork 5
IntelliHome::WebUI::Plugin::RPC
mudler edited this page Aug 21, 2014
·
1 revision
IntelliHome::WebUI::Plugin::RPC - RPC plugin for mojolicious web application
my @Objs=rpc_call_blocking("Service",@args)
#or non blocking:
rpc_call("Service", sub { my ($res) = @_; ... },@params);
This Mojolicious plugin allow to call the rpc server of IntelliHome
Async call to the RPC server.
rpc_call("Service", @params,
sub { my ($res) = @_; ... }
);
Blocking call to the RPC server
my @Objs=rpc_call_blocking("Service",@args)
skullbocks dgikiller@gmail.comt
Copyright 2014- skullbocks
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
IntelliHome::WebUI::Plugin::ModelFactory, IntelliHome::IntelliHomeWebUI