Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opensmock/pharozeromq
ZeroMQ (ØMQ, 0MQ or ZMQ) library for Pharo
https://github.com/opensmock/pharozeromq
asynchronous asynchronous-communication communication library messaging open-smock pharo pharo-smalltalk zeromq zmq
Last synced: 4 months ago
JSON representation
ZeroMQ (ØMQ, 0MQ or ZMQ) library for Pharo
- Host: GitHub
- URL: https://github.com/opensmock/pharozeromq
- Owner: OpenSmock
- License: mit
- Created: 2024-02-21T09:34:36.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-07-12T12:02:57.000Z (7 months ago)
- Last Synced: 2024-10-09T13:06:40.870Z (4 months ago)
- Topics: asynchronous, asynchronous-communication, communication, library, messaging, open-smock, pharo, pharo-smalltalk, zeromq, zmq
- Language: Smalltalk
- Homepage:
- Size: 230 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![License](https://img.shields.io/github/license/OpenSmock/PharoZeroMQ.svg)](./LICENSE)
[![Pharo 11 CI](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo11CI.yml/badge.svg)](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo11CI.yml)
[![Pharo 12 CI](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo12CI.yml/badge.svg)](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo12CI.yml)
[![Pharo 13 CI](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo13CI.yml/badge.svg)](https://github.com/OpenSmock/PharoZeroMQ/actions/workflows/Pharo13CI.yml)# PharoZeroMQ
This is a framework of the [ZeroMQ Library](https://github.com/zeromq) ( also known as ZMQ, ØMQ or 0MQ) on Pharo. Using ZMQ lets you create a connection between 2 images via an URL and eventually send messages to one another. You will find the bases of the library, but some methods might be missing as well as some constant options. You'll find in ZMQ-Samples examples on how to use certain methods to guide you.
### What's to improve
+ _Receiving in a blocking way_ : To do that, a Threaded Worker needs to be used but every socket type doesn't necessarily support it. In this case, none of the implemented sockets can support multi-threading.+ _Get Socket Option_ : This method doesn't seem to work, the error obtained is : 'Ressource Temporarily Unavailable' no matter what was tried regarding the type of arguments.
+ _Set Socket Option_ : Works with ByteArrays, so the use of ZMQ_SUBSCRIBE and UNSUBSCRIBE is possible as well as for other options that take same types arguments. There is however the same issue than getsockopt for any other type requested by the method.
+ _Library for other OS_ : For now, the only available library on this repository is zmq.dll which is for Windows. A zmq.so and zmq.dylib would let other OSs users use this repository.
## Getting Started
### Installation
To install the project on your Pharo image you can just execute the following script:
```smalltalk
Metacello new
baseline: 'PharoZeroMQ';
repository: 'github://OpenSmock/PharoZeroMQ:main/src';
load.
```## Dependencies
No dependencies.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.