GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::STOMP::Client::Version(3) User Contributed Perl Documentation Net::STOMP::Client::Version(3)

Net::STOMP::Client::Version - Version support for Net::STOMP::Client

  use Net::STOMP::Client;
  $stomp = Net::STOMP::Client->new(host => "127.0.0.1", port => 61613);
  ...
  # can change the acceptable versions only _before_ connect()
  $stomp->accept_version([ "1.1", "1.2" ]);
  ...
  $stomp->connect();
  ...
  # can get the negotiated version only _after_ connect()
  printf("using STOMP %s\n", $stomp->version());

This module handles STOMP protocol version negotiation. It is used internally by Net::STOMP::Client and should not be directly used elsewhere.

This module provides the following methods to Net::STOMP::Client:
accept_version([VALUE])
get/set the list of acceptable STOMP protocol versions; the given value can either be undef (meaning all supported versions) or a single version or an array reference for multiple versions
version([STRING])
get the negotiated STOMP protocol version

Net::STOMP::Client supports the versions 1.0 (see <http://stomp.github.com/stomp-specification-1.0.html>), 1.1 (see <http://stomp.github.com/stomp-specification-1.1.html>) and 1.2 (see <http://stomp.github.com/stomp-specification-1.2.html>) of the STOMP protocol.

Net::STOMP::Client.

Lionel Cons <http://cern.ch/lionel.cons>

Copyright (C) CERN 2010-2017

2017-01-31 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.