├── .github ├── FUNDING.yml ├── linters │ └── .markdown-lint.yml └── workflows │ ├── add-discuss-during-sync.yml │ ├── announce-a-release.yml │ ├── breakage-against-ponyc-latest.yml │ ├── changelog-bot.yml │ ├── generate-documentation.yml │ ├── lint-action-workflows.yml │ ├── pr.yml │ ├── prepare-for-a-release.yml │ ├── release-notes-reminder.yml │ ├── release-notes.yml │ ├── release.yml │ └── remove-discuss-during-sync.yml ├── .markdownlintignore ├── .release-notes ├── 0.1.1.md ├── 0.2.0.md ├── 0.2.1.md └── next-release.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASE_PROCESS.md ├── STYLE_GUIDE.md ├── VERSION ├── corral.json ├── examples └── spl4 │ └── main.pony ├── lock.json └── reactive_streams ├── broadcast.pony ├── errors.pony ├── managedpublisher.pony ├── processor.pony ├── publisher.pony ├── subscriber.pony ├── subscribermanager.pony ├── subscription.pony ├── test.pony └── unicast.pony /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: ponyc 2 | -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- 1 | { 2 | "MD013": false 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/add-discuss-during-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/add-discuss-during-sync.yml -------------------------------------------------------------------------------- /.github/workflows/announce-a-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/announce-a-release.yml -------------------------------------------------------------------------------- /.github/workflows/breakage-against-ponyc-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/breakage-against-ponyc-latest.yml -------------------------------------------------------------------------------- /.github/workflows/changelog-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/changelog-bot.yml -------------------------------------------------------------------------------- /.github/workflows/generate-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/generate-documentation.yml -------------------------------------------------------------------------------- /.github/workflows/lint-action-workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/lint-action-workflows.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-for-a-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/prepare-for-a-release.yml -------------------------------------------------------------------------------- /.github/workflows/release-notes-reminder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/release-notes-reminder.yml -------------------------------------------------------------------------------- /.github/workflows/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/remove-discuss-during-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.github/workflows/remove-discuss-during-sync.yml -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- 1 | CHANGELOG.md 2 | CODE_OF_CONDUCT.md 3 | .release-notes/ 4 | -------------------------------------------------------------------------------- /.release-notes/0.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.release-notes/0.1.1.md -------------------------------------------------------------------------------- /.release-notes/0.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/.release-notes/0.2.0.md -------------------------------------------------------------------------------- /.release-notes/0.2.1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.release-notes/next-release.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /STYLE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/STYLE_GUIDE.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.1 2 | -------------------------------------------------------------------------------- /corral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/corral.json -------------------------------------------------------------------------------- /examples/spl4/main.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/examples/spl4/main.pony -------------------------------------------------------------------------------- /lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "locks": [] 3 | } 4 | -------------------------------------------------------------------------------- /reactive_streams/broadcast.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/reactive_streams/broadcast.pony -------------------------------------------------------------------------------- /reactive_streams/errors.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/reactive_streams/errors.pony -------------------------------------------------------------------------------- /reactive_streams/managedpublisher.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/reactive_streams/managedpublisher.pony -------------------------------------------------------------------------------- /reactive_streams/processor.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/reactive_streams/processor.pony -------------------------------------------------------------------------------- /reactive_streams/publisher.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/reactive_streams/publisher.pony -------------------------------------------------------------------------------- /reactive_streams/subscriber.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/reactive_streams/subscriber.pony -------------------------------------------------------------------------------- /reactive_streams/subscribermanager.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/reactive_streams/subscribermanager.pony -------------------------------------------------------------------------------- /reactive_streams/subscription.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/reactive_streams/subscription.pony -------------------------------------------------------------------------------- /reactive_streams/test.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/reactive_streams/test.pony -------------------------------------------------------------------------------- /reactive_streams/unicast.pony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/reactive_streams/HEAD/reactive_streams/unicast.pony --------------------------------------------------------------------------------