Sponsored Content
Full Discussion: A Dbus signal can be lost?
Top Forums UNIX for Beginners Questions & Answers A Dbus signal can be lost? Post 303042994 by Kovalevsky on Wednesday 15th of January 2020 08:44:11 AM
Old 01-15-2020
A Dbus signal can be lost?

Hello to everyone! I have a little and simple question. I'm developing a simple application that receives dbus signals . The application works great, but a question is around my head and that is : A dbus signal can be lost ? I read some dbus documentation but didn't clear me this doubt.

Thanks!
 

4 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Lost Data Lost Admin

First time so excuse my ignorance please. I may not be accurately describing the issue. I have inherited a small lab mostly SUN V120s. We lost power and are trying to recover. Nope no backups... The primary issue I have is 1 box is an Oracle Server. It has 2 36Gb harddrives. I am able to... (3 Replies)
Discussion started by: murphsr
3 Replies

2. UNIX for Dummies Questions & Answers

/var/run/dbus/system_bus_socket problem

Hello, i have a problem. i have a domain name hosted on a server and it goes very slow and sometimes down. I looked on the processes running and on the netstat status and i discovered that each time there is a slowness or a downtime is caused by: /var/run/dbus/system_bus_socket many of these... (9 Replies)
Discussion started by: dan8354544
9 Replies

3. UNIX for Advanced & Expert Users

dbus error

Hi all I have a tricky issue that i am not to sure on how to tackle We have certain users that we a dbus session is run it does not create a ~/.dbus directory with the relevent files in it i am not sure how to go about debugging it thanks Adam (10 Replies)
Discussion started by: ab52
10 Replies

4. Programming

How to create a new GType using dbus-Glib?

Hi, I'm trying to use the DBUS connection to communicate with the Marxbot medulla. But when I want to use the interface to send a "SetSpeed" event using the method "SendEventName", I need to create a new GTYPE "DBUS_TYPE_G_INIT16_ARRAY" which is an array of int16. I found this function ... (0 Replies)
Discussion started by: wiem
0 Replies
dbus-send(1)						      General Commands Manual						      dbus-send(1)

NAME
dbus-send - Send a message to a message bus SYNOPSIS
dbus-send [--system | --session] [--dest=NAME] [--print-reply] [--type=TYPE] <destination object path> <message name> [contents ...] DESCRIPTION
The dbus-send command is used to send a message to a D-Bus message bus. See http://www.freedesktop.org/software/dbus/ for more information about the big picture. There are two well-known message buses: the systemwide message bus (installed on many systems as the "messagebus" service) and the per-user-login-session message bus (started each time a user logs in). The --system and --session options direct dbus-send to send mes- sages to the system or session buses respectively. If neither is specified, dbus-send sends to the session bus. Nearly all uses of dbus-send must provide the --dest argument which is the name of a connection on the bus to send the message to. If --dest is omitted, no destination is set. The object path and the name of the message to send must always be specified. Following arguments, if any, are the message contents (mes- sage arguments). These are given as type-specified values and may include containers (arrays, dicts, and variants) as described below. <contents> ::= <item> | <container> [ <item> | <container>...] <item> ::= <type>:<value> <container> ::= <array> | <dict> | <variant> <array> ::= array:<type>:<value>[,<value>...] <dict> ::= dict:<type>:<type>:<key>,<value>[,<key>,<value>...] <variant> ::= variant:<type>:<value> <type> ::= string | int16 | uint 16 | int32 | uint32 | int64 | uint64 | double | byte | boolean | objpath D-Bus supports more types than these, but dbus-send currently does not. Also, dbus-send does not permit empty containers or nested con- tainers (e.g. arrays of variants). Here is an example invocation: dbus-send --dest=org.freedesktop.ExampleName /org/freedesktop/sample/object/name org.freedesktop.ExampleInterface.ExampleMethod int32:47 string:'hello world' double:65.32 array:string:"1st item","next item","last item" dict:string:int32:"one",1,"two",2,"three",3 variant:int32:-8 objpath:/org/freedesktop/sample/object/name Note that the interface is separated from a method or signal name by a dot, though in the actual protocol the interface and the interface member are separate fields. OPTIONS
The following options are supported: --dest=NAME Specify the name of the connection to receive the message. --print-reply Block for a reply to the message sent, and print any reply received. --system Send to the system message bus. --session Send to the session message bus. (This is the default.) --type=TYPE Specify "method_call" or "signal" (defaults to "signal"). AUTHOR
dbus-send was written by Philip Blundell. BUGS
Please send bug reports to the D-Bus mailing list or bug tracker, see http://www.freedesktop.org/software/dbus/ dbus-send(1)
All times are GMT -4. The time now is 08:40 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy