Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reacture/khala.messaging
Abstraction layer and implementations for asynchronous messaging
https://github.com/reacture/khala.messaging
azure event-hubs messaging reactive
Last synced: 14 days ago
JSON representation
Abstraction layer and implementations for asynchronous messaging
- Host: GitHub
- URL: https://github.com/reacture/khala.messaging
- Owner: Reacture
- License: mit
- Created: 2017-01-16T09:27:42.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-05T14:14:42.000Z (about 6 years ago)
- Last Synced: 2024-11-18T19:30:16.386Z (3 months ago)
- Topics: azure, event-hubs, messaging, reactive
- Language: C#
- Homepage:
- Size: 1.61 MB
- Stars: 9
- Watchers: 5
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Khala - Messaging
메시지 중심 아키텍처를 지원하는 도구입니다.
## 패키지
### Contracts
메시지 계약 형식을 제공합니다.
```
> Install-Package Khala.Messaging.Contracts
```### Abstraction
메시징 추상화 계층을 제공합니다.
```
> Install-Package Khala.Messaging.Abstraction
```### Azure
Microsoft Azure 메시징 서비스 대상 구현체를 제공합니다. 지원하는 서비스는 다음과 같습니다.
- Event Hubs
```
> Install-Package Khala.Messaging.Azure
```### Azure.Owin
Owin 기반 응용프로그램에 Khala.Messaging.Azure 패키지를 지원하는 편의성을 제공합니다.
```
> Install-Package Khala.Messaging.Azure.Owin
```## License
```
MIT LicenseCopyright (c) 2017 Gyuwon Yi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```