php install stompgoogle 搜索,Stomp

news/2024/7/5 4:54:07

此扩展允许php应用程序通过简单的面向对象和过程接口与任何与Stomp兼容的Message Broker进行通信。[»Stomp官方网站](https://stomp.github.io/)

STOMP是简单(或流)面向文本的消息传递协议(一般用于邮件服务?)

[https://pecl.php.net/package/stomp](https://pecl.php.net/package/stomp)

* [例子](https://www.php.net/manual/en/stomp.examples.php)

* [stomp函数](https://www.php.net/manual/en/ref.stomp.php)

* [stomp_connect_error](https://www.php.net/manual/en/function.stomp-connect-error.php)—返回上一次连接错误的字符串描述

* [stomp\_version](https://www.php.net/manual/en/function.stomp-version.php)—获取当前的stomp扩展版本

* [践踏](https://www.php.net/manual/en/class.stomp.php)—践踏类

* [Stomp :: abort](https://www.php.net/manual/en/stomp.abort.php)—回滚正在进行的事务

* [Stomp :: ack](https://www.php.net/manual/en/stomp.ack.php)—确认消息的使用

* [Stomp :: begin](https://www.php.net/manual/en/stomp.begin.php)—开始交易

* [Stomp :: commit](https://www.php.net/manual/en/stomp.commit.php)—提交正在进行的事务

* [Stomp :: \_\_ construct](https://www.php.net/manual/en/stomp.construct.php)—打开一个连接

* [Stomp :: \_\_ destruct](https://www.php.net/manual/en/stomp.destruct.php)—关闭脚踏连接

* [Stomp :: error](https://www.php.net/manual/en/stomp.error.php)—获取上一个踩踏错误

* [Stomp :: getReadTimeout-](https://www.php.net/manual/en/stomp.getreadtimeout.php)获取读取超时

* [Stomp :: getSessionId](https://www.php.net/manual/en/stomp.getsessionid.php)—获取当前的重踏会话ID

* [Stomp :: hasFrame](https://www.php.net/manual/en/stomp.hasframe.php)—指示是否有准备读取的框架

* [Stomp :: readFrame](https://www.php.net/manual/en/stomp.readframe.php)—读取下一帧

* [Stomp :: send](https://www.php.net/manual/en/stomp.send.php)—发送消息

* [Stomp :: setReadTimeoutout](https://www.php.net/manual/en/stomp.setreadtimeout.php)—设置读取超时

* [Stomp :: subscribe-](https://www.php.net/manual/en/stomp.subscribe.php)注册以收听给定的目的地

* [Stomp :: unsubscribe-](https://www.php.net/manual/en/stomp.unsubscribe.php)删除现有的订阅

* [StompFrame](https://www.php.net/manual/en/class.stompframe.php)— StompFrame类

* [StompFrame :: \_\_ construct](https://www.php.net/manual/en/stompframe.construct.php)—构造函数

* [StompException](https://www.php.net/manual/en/class.stompexception.php)— StompException类

* [StompException :: getDetails](https://www.php.net/manual/en/stomp.getdetails.php)—获取异常详细信息


http://www.niftyadmin.cn/n/3501648.html

相关文章

PullToRefresh和SwipeRefreshLayout的使用

PullToRefresh是一套实现非常好的下拉刷新库(下载地址:https://github.com/chrisbanes/Android-PullToRefresh),它支持: 1.ListView 2.ExpandableListView 3.GridView 4.WebView 5.ScrollView 6.Horizontal ScrollView…

Linux搭建sendmail服务器

一、安装前准备1.设置静态IP http://love11forever.blog.51cto.com/11313259/18507322.关闭iptableshttp://love11forever.blog.51cto.com/11313259/18469353.关闭selinuxhttp://love11forever.blog.51cto.com/11313259/1846943 二、安装、配置DNS服务1.安装DNS服务yum in…

linux vi查找字符串查找字符串,Linux的vi查找字符串

使用vi编辑器编辑长文件时,常常是头昏眼花,也找不到需要更改的内容。这时,使用查找功能尤为重要。方法如下:1、命令模式下输入“/字符串”,例如“/Section 3”。2、如果查找下一个,按“n”即可。要自当前光…

网页 console的使用

通过按下回车键会触发执行命令,而有时候我们需要执行的逻辑比较复杂,需要多行才可以完成,可以通过点击“shift回车键”来实现换行。在console中,可以实现对按钮的监控。比如此时按钮的文本值为“不可点击”,类名为“bu…

pku 1724 ROADS BFS +优先队列

http://poj.org/problem?id1724 题意: Bob现在有的钱数为k,他想从城市1到城市n,给出m条连接两个城市的有向边,并且给出路的长度w,和经过这条路要交的钱数c。问Bob在花的过路费不超过k的前提下能到达城市n的最短路径为…

5320 软件集合

用户名:fkedwgwy密码:fkedwgwy 《爱她就要学会用她》 目前软件: UC6.0 QQ2008 来电通 天气通 掌上书院 【090609】【5320 软件集合】超强音乐 播放器 MobiFactor PowerMp3 v1.17 完全版 【090609】【5320 软件集合】火烧图文Burn1.2汉化版 【090610】…

centos7 中ifconfig提示-bash

1、检查是否存在ifconfig命令:cat /sbin/ifconfig2、不存在,安装net-toolsyum upgradeyum install net-tools转载于:https://blog.51cto.com/wd0809/1852722

linux重定向文件过大,关于linux:如何将输出重定向到文件和标准输出

在bash中,调用foo将在stdout上显示该命令的任何输出。调用foo > output会将该命令的任何输出重定向到指定的文件(在本例中为"output")。有没有方法将输出重定向到一个文件,并在stdout上显示它?如果有人在这里寻找错误输出到文件…