Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/svenvc/stamp
Stamp is an implementation of STOMP (Simple (or Streaming) Text Oriented Message Protocol) for Pharo, a protocol to interact with message-oriented middleware (MOM).
https://github.com/svenvc/stamp
message-oriented-middleware message-queue pharo smalltalk stomp
Last synced: about 1 month ago
JSON representation
Stamp is an implementation of STOMP (Simple (or Streaming) Text Oriented Message Protocol) for Pharo, a protocol to interact with message-oriented middleware (MOM).
- Host: GitHub
- URL: https://github.com/svenvc/stamp
- Owner: svenvc
- License: mit
- Created: 2018-08-11T17:43:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-30T06:43:06.000Z (over 2 years ago)
- Last Synced: 2023-03-23T16:25:31.094Z (almost 2 years ago)
- Topics: message-oriented-middleware, message-queue, pharo, smalltalk, stomp
- Language: Smalltalk
- Size: 216 KB
- Stars: 5
- Watchers: 4
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stamp
[![CI](https://github.com/svenvc/stamp/actions/workflows/CI.yml/badge.svg)](https://github.com/svenvc/stamp/actions/workflows/CI.yml)
Stamp is an implementation of STOMP (Simple (or Streaming) Text Oriented Message Protocol) for Pharo, a protocol to interact with message-oriented middleware (MOM).
More specifically, Stamp implements STOMP 1.2 and was tested against RabbitMQ 3.x. Other message-oriented middleware implementations accessible through STOMP include Apache ActiveMQ, Glassfish Open MQ and Fuse Message Broker based on Active MQ - but these have not yet been tested.
Messaging middleware is an important technology for building scaleable and flexible enterprise software architectures.
## References
- https://en.wikipedia.org/wiki/Streaming_Text_Oriented_Messaging_Protocol
- http://stomp.github.io
- https://rabbitmq.com
- https://rabbitmq.com/stomp.html## Installation
Execute the following Metacello baseline load script
```Smalltalk
Metacello new
baseline: 'Stamp';
repository: 'github://svenvc/stamp/repository';
load
```
## Dependency
Add the following code to your Metacello baseline
```Smalltalk
spec
baseline: 'Stamp'
with: [ spec repository: 'github://svenvc/stamp/repository' ]
```MIT License.