Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::dbus::binding::value(3pm) [debian 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)

Check Out this Related Man Page

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

NAME
Net::DBus::Binding::PendingCall - A handler for pending method replies SYNOPSIS
my $call = Net::DBus::Binding::PendingCall->new(method_call => $call, pending_call => $reply); # Wait for completion $call->block; # And get the reply message my $msg = $call->get_reply; DESCRIPTION
This object is used when it is necessary to make asynchronous method calls. It provides the means to be notified when the reply is finally received. METHODS
my $call = Net::DBus::Binding::PendingCall->new(method_call => $method_call, pending_call => $pending_call); Creates a new pending call object, with the "method_call" parameter being a reference to the "Net::DBus::Binding::Message::MethodCall" object whose reply is being waiting for. The "pending_call" parameter is a reference to the raw C pending call object. $call->cancel Cancel the pending call, causing any reply that is later received to be discarded. my $boolean = $call->get_completed Returns a true value if the pending call has received its reply, or a timeout has occurred. $call->block Block the caller until the reply is received or a timeout occurrs. my $msg = $call->get_reply; Retrieves the "Net::DBus::Binding::Message" object associated with the complete call. $call->set_notify($coderef); Sets a notification function to be invoked when the pending call completes. The callback will be passed a single argument which is this pending call object. AUTHOR
Daniel P. Berrange COPYRIGHT
Copyright (C) 2006-2011 Daniel P. Berrange SEE ALSO
Net::DBus::Binding::Connection, Net::DBus::Binding::Message, Net::DBus::ASyncReply perl v5.14.2 2011-06-30 Net::DBus::Binding::PendingCall(3pm)
Man Page

We Also Found This Discussion For You

1. Shell Programming and Scripting

Net::Ftp in perl

I am trying to execute a script in another server, i used Net::Ftp module How to execute unix command in another server by using Net::Ftp module.. #!/usr/bin.perl ### Perl script to $ftp->login($user_name,'password') or die "Cannot login ", $ftp->message;... (2 Replies)
Discussion started by: pritish.sas
2 Replies