Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::dbus::binding::message::signal(3pm) [debian man page]

Net::DBus::Binding::Message::Signal(3pm)		User Contributed Perl Documentation		  Net::DBus::Binding::Message::Signal(3pm)

NAME
Net::DBus::Binding::Message::Signal - a message encoding a signal SYNOPSIS
use Net::DBus::Binding::Message::Signal; my $signal = Net::DBus::Binding::Message::Signal->new( object_path => "/org/example/myobject", interface => "org.example.myobject", signal_name => "foo_changed"); $connection->send($signal); DESCRIPTION
This module is part of the low-level DBus binding APIs, and should not be used by application code. No guarentees are made about APIs under the "Net::DBus::Binding::" namespace being stable across releases. This module provides a convenience constructor for creating a message representing a signal. METHODS
my $signal = Net::DBus::Binding::Message::Signal->new( object_path => $path, interface => $interface, signal_name => $name); Creates a new message, representing a signal [to be] emitted by the object located under the path given by the "object_path" parameter. The name of the signal is given by the "signal_name" parameter, and is scoped to the interface given by the "interface" parameter. AUTHOR
Daniel P. Berrange. COPYRIGHT
Copyright (C) 2004-2009 Daniel P. Berrange SEE ALSO
Net::DBus::Binding::Message perl v5.14.2 2011-06-30 Net::DBus::Binding::Message::Signal(3pm)

Check Out this Related Man Page

Net::DBus::Binding::Value(3pm)				User Contributed Perl Documentation			    Net::DBus::Binding::Value(3pm)

NAME
Net::DBus::Binding::Value - Strongly typed data value SYNOPSIS
# Import the convenience functions use Net::DBus qw(:typing); # Call a method with passing an int32 $object->doit(dint32("3")); DESCRIPTION
This module provides a simple wrapper around a raw Perl value, associating an explicit DBus type with the value. This is used in cases where a client is communicating with a server which does not provide introspection data, but for which the basic data types are not sufficient. This class should not be used directly, rather the convenience functions in Net::DBus be called. METHODS
my $value = Net::DBus::Binding::Value->new($type, $value); Creates a wrapper for the perl value $value marking it as having the dbus data type $type. It is not neccessary to call this method directly, instead the data typing methods in the Net::DBus object should be used. my $raw = $value->value Returns the raw perl value wrapped by this object my $type = $value->type Returns the dbus data type this value is marked as having AUTHOR
Daniel P. Berrange COPYRIGHT
Copyright (C) 2004-2011 Daniel P. Berrange SEE ALSO
Net::DBus, Net::DBus::Binding::Introspector, Net::DBus::Binding::Iterator perl v5.14.2 2011-06-30 Net::DBus::Binding::Value(3pm)
Man Page

9 More Discussions You Might Find Interesting

1. Solaris

Sun Sol 5.1 Signal Values

Looking for a document that indicates the signal values and what they mean. Found this of AIX under /usr/include/sys/signal.h only Sun sol did not find same type of information. (3 Replies)
Discussion started by: Texan_BOB
3 Replies

2. UNIX for Dummies Questions & Answers

Alarm signal

Hi, when I execute a script on unix AIX, I've got an error message: "Execution: 85328 Signal d'alarme". If I edit this file with "vi", I ve got the same error after a while (about 1 minute). If I try with another user I still have the problem. But if I rename this file, no problem. My... (5 Replies)
Discussion started by: cgsteph
5 Replies

3. Solaris

To print Coloured Prelogin Message on SOLARIS--9................

Hiiii..... Every one...... I am using /etc/issue file to display Pre-login Message on my system, installed with SOLARIS-9. I am getting this Message in White fonts having Black background ( Colour of the Screen)..... So, is there ... (2 Replies)
Discussion started by: prashantshukla
2 Replies

4. UNIX for Advanced & Expert Users

Signal Handling and Context Switches

(2 Replies)
Discussion started by: XComp
2 Replies

5. Programming

Signal Handling and Context Switches

Hi guys, this is my first posting, so at first hi to everyone! ;) I have a problem with ucontext_t in connection with signal handling. I want to simulate a preemptive scheduler. I am using the iTimer with ITIMER_PROF, to schedule the interrupts. You find the code below: #include <stdio.h>... (18 Replies)
Discussion started by: XComp
18 Replies

6. UNIX and Linux Applications

SIGSEGV Signal handling

Hello, Can anybody tell me how can i handle segmentation fault signal, in C code? (2 Replies)
Discussion started by: mustus
2 Replies

7. Shell Programming and Scripting

Perl - Problems with Signal Handler

I have a problem with signal handlers not working. I have a long 1000 line code and somehow this code for signal handling is not working: $SIG{INT} = \&interrupt; sub interrupt { print STDERR "Caught a control c!\n"; exit; # or just about anything else you'd want to do } Any... (2 Replies)
Discussion started by: som.nitk
2 Replies

8. Shell Programming and Scripting

Perl Signal Handler

I was working on some Perl code that does signal handling and I came across this one liner and wasn't sure what it was doing. local $SIG{__DIE__} = sub {$! = 2; die $_;}; I think the first part of the anonymous subroutine is setting $! to 2, but I am not sure what the second part is doing. ... (1 Reply)
Discussion started by: SFNYC
1 Replies

9. Programming

Please help:program hang stuck there signal handling on POSIX Message Queue UNIX C programming

in a single main() function,so need signal handling. Use Posix Message Queue IPC mechanism , can ignore the priority and other linked list message,to implement the scenario: client:Knock Knock server:who's there client: Eric Server:Eric,Welcome. client:exit all process terminated ... (1 Reply)
Discussion started by: ouou
1 Replies