Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

anyevent::xmpp::ext::version(3pm) [debian man page]

AnyEvent::XMPP::Ext::Version(3pm)			User Contributed Perl Documentation			 AnyEvent::XMPP::Ext::Version(3pm)

NAME
AnyEvent::XMPP::Ext::Version - Software version SYNOPSIS
use AnyEvent::XMPP::Ext::Version; my $version = AnyEvent::XMPP::Ext::Version->new; $version->set_name ("My client"); $version->set_version ("0.3"); $version->set_os (`uname -a`); $disco->enable_feature ($version->disco_feature); DESCRIPTION
This module defines an extension to provide the abilities to answer to software version requests and to request software version from other entities. See also XEP-0092 This class is derived from AnyEvent::XMPP::Ext and can be added as extension to objects that implement the AnyEvent::XMPP::Extendable interface or derive from it. METHODS
new (%args) Creates a new software version handle. set_name ($name) This method sets the software $name string, the default is "AnyEvent::XMPP". set_version ($version) This method sets the software $version string that is replied. The default is $AnyEvent::XMPP::VERSION. set_os ($os) This method sets the operating system string $os. If you pass undef the string will be removed. The default is no operating system string at all. You may want to pass something like this: $version->set_os (`uname -s -r -m -o`); request_version ($con, $dest, $cb) This method sends a version request to $dest on the connection $con. $cb is the callback that will be called if either an error occured or the result was received. The callback will also be called after the default IQ timeout for the connection $con. The second argument for the callback will be either undef if no error occured or a AnyEvent::XMPP::Error::IQ error. The first argument will be a hash reference with the following fields: jid The JID of the entity this version reply belongs to. version The software version string of the entity. name The software name of the entity. os The operating system of the entity, which might be undefined if none was provided. Here an example of the structure of the hash reference: { jid => 'juliet@capulet.com/balcony', name => 'Exodus', version => '0.7.0.4', os => 'Windows-XP 5.01.2600', } AUTHOR
Robin Redeker, "<elmex at ta-sa.org>", JID: "<elmex at jabber.org>" COPYRIGHT &; LICENSE Copyright 2007, 2008 Robin Redeker, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-23 AnyEvent::XMPP::Ext::Version(3pm)

Check Out this Related Man Page

AnyEvent::XMPP::Ext::Pubsub(3pm)			User Contributed Perl Documentation			  AnyEvent::XMPP::Ext::Pubsub(3pm)

NAME
AnyEvent::XMPP::Ext::Pubsub - Implements XEP-0060: Publish-Subscribe SYNOPSIS
my $con = AnyEvent::XMPP::Connection->new (...); $con->add_extension (my $ps = AnyEvent::XMPP::Ext::Pubsub->new); ... DESCRIPTION
This module implements all tasks of handling the publish subscribe mechanism. (partially implemented) METHODS
new This is the constructor for a pubsub object. It takes no further arguments. delete_node($con, $uri, $cb) $con is the connection already established, $uri is the name of the node to be created $cb is the callback Try to remove a node. create_node ($con, $uri, $cb) $con is the connection already established, $uri is the name of the node to be created $cb is the callback Try to create a node. subscribe_node($con, $uri, $cb) $con is the connection already established, $uri is the name of the node to be created $cb is the callback Try to retrieve items. unsubscribe_node($con, $uri, $bc)> $con is the connection already established, $uri is the name of the node to be created $cb is the callback Try to unsubscribe from a node. publish_item($con, $uri, $create_cb, $cb) $con is the connection already established, $uri is the name of the node to be created $create_cb is the callback $cb is the callback Try to publish an item. retrive_items($con, $uri, $cb) $con is the connection already established, $uri is the name of the node to be created $cb is the callback Try to retrieve items. retrive_item($con, $uri, $id, $cb) $con is the connection already established, $uri is the name of the node to be created $id is the id of the entry to be retrieved $cb is the cb Try to retrieve item. AUTHOR
Robin Redeker, "<elmex at ta-sa.org>", JID: "<elmex at jabber.org>" CONTRIBUTORS
Chris Miceli - additional work on the pubsub extension COPYRIGHT &; LICENSE Copyright 2007, 2008 Robin Redeker, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-23 AnyEvent::XMPP::Ext::Pubsub(3pm)
Man Page