You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This patch add a 'return self;' to each functions in service_interface
module to use method chaining technique. This helps developers write
code more conveniently. Please refer to the example below.
var obj = service.createObject('/test');
obj.createInterface('test.iface')
.addMethod('method1', ...)
.addMethod('method2', ...)
.update();
Signed-off-by: Inho Oh <[email protected]>
0 commit comments