efl/src/lib/eldbus/eldbus_model_method.eo

36 lines
971 B
Plaintext
Raw Normal View History

import eldbus_types;
class Eldbus.Model.Method (Eldbus.Model.Arguments) {
[[Eldbus model method class]]
methods {
method_constructor {
[[Custom Eldbus_Model_Method constructor.
@since 1.16]]
params {
2016-11-04 09:12:17 -07:00
@in proxy: ptr(Eldbus.Proxy); [[Eldbus proxy]]
2017-11-02 08:40:42 -07:00
@cref method: Eldbus.Introspection.Method; [[The introspected method]]
}
}
call {
[[Calls the method. The properties must have been set.
The event EMODEL_EVENT_PROPERTIES_CHANGED is raised for output arguments (properties).
The event ELDBUS_MODEL_METHOD_EVENT_METHOD_CALLED is raised for a successful call. Otherwise
@since 1.16]]
}
}
implements {
Efl.Object.constructor;
}
constructors {
.method_constructor;
}
events {
successful,call; [[Event dispatched for a successful method call.]]
}
}