# stomp **Repository Path**: mirrors/stomp ## Basic Information - **Project Name**: stomp - **Description**: Stomp 提供了客户端和代理之间进行广泛消息传输的框架 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: https://www.oschina.net/p/stomp - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2020-06-22 - **Last Updated**: 2026-02-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ==README http://stomp.rubyforge.org/ ===Overview An implementation of the Stomp protocol (http://stomp.codehaus.org/Protocol) for Ruby. ===Example Usage client = Stomp::Client.new("test", "user", "localhost", 61613) client.send("/my/queue", "hello world!") client.subscribe("/my/queue") do |msg| p msg end ===Contact info Up until March 2009 the project was maintained and primarily developed by Brian McCallister. The project is now maintained by Johan Sørensen ===Source Code http://gitorious.org/projects/stomp/ http://github.com/js/stomp/ ===Project urls Project Home : http://gitorious.org/projects/stomp/ http://rubyforge.org/projects/stomp/ Stomp Protocol Info : http://stomp.codehaus.org/Protocol