An example interface originally described as part of the announcment of new sd-bus interfaces at: http://0pointer.net/blog/the-new-sd-bus-api-of-systemd.html
Multiplies two integers 'x' and 'y' and returns the result.
| direction | name | type | description |
|---|---|---|---|
| in | x | integer | The first integer to multiply. |
| in | y | integer | The second integer to multiply. |
| out | z | integer | The result of (x*y). |
Divides two integers 'x' and 'y' and returns the result.
| direction | name | type | description |
|---|---|---|---|
| in | x | integer | The first integer to divide. |
| in | y | integer | The second integer to divide. |
| out | z | integer | The result of (x/y). |
Reset the LastResult property to zero.
| name | type | description |
|---|---|---|
| LastResult | integer | The result of the most recent calculation. |
Signal indicating the LastReset property has been set to zero by the 'Clear' method.
| name | type | description |
|---|---|---|
| unnamed | integer | Value of LastReset prior to Clear. |