Socket
Socket
Sign inDemoInstall

@effection/channel

Package Overview
Dependencies
Maintainers
1
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@effection/channel - npm Package Compare versions

Comparing version 0.6.6 to 0.6.7

9

CHANGELOG.md
# Changelog
## 0.6.7
### Patch Changes
- 25b68eb: Subscriptions created via `createSubscription` are chainable on both sides of the yield
- Updated dependencies [25b68eb]
- @effection/subscription@0.11.0
- @effection/events@0.7.8
## 0.6.6

@@ -4,0 +13,0 @@

4

dist/channel.cjs.development.js

@@ -14,4 +14,4 @@ 'use strict';

_proto[subscription.SymbolSubscribable] = function () {
return this.subscribe();
_proto[subscription.SymbolSubscribable] = function* () {
return yield this.subscribe();
};

@@ -18,0 +18,0 @@

@@ -1,2 +0,2 @@

"use strict";var e=require("@effection/subscription"),t=require("@effection/events"),n=require("events");exports.Channel=function(){function i(){this.bus=new n.EventEmitter}var r=i.prototype;return r[e.SymbolSubscribable]=function(){return this.subscribe()},r.setMaxListeners=function(e){this.bus.setMaxListeners(e)},r.send=function(e){this.bus.emit("event",{done:!1,value:e})},r.subscribe=function(){var n=this.bus;return e.createSubscription((function*(e){for(var i=yield t.on(n,"event");;){var r=(yield i.expect())[0];if(r.done)return r.value;e(r.value)}}))},r.close=function(){this.bus.emit("event",{done:!0,value:arguments.length<=0?void 0:arguments[0]})},i}();
"use strict";var e=require("@effection/subscription"),t=require("@effection/events"),n=require("events");exports.Channel=function(){function i(){this.bus=new n.EventEmitter}var r=i.prototype;return r[e.SymbolSubscribable]=function*(){return yield this.subscribe()},r.setMaxListeners=function(e){this.bus.setMaxListeners(e)},r.send=function(e){this.bus.emit("event",{done:!1,value:e})},r.subscribe=function(){var n=this.bus;return e.createSubscription((function*(e){for(var i=yield t.on(n,"event");;){var r=(yield i.expect())[0];if(r.done)return r.value;e(r.value)}}))},r.close=function(){this.bus.emit("event",{done:!0,value:arguments.length<=0?void 0:arguments[0]})},i}();
//# sourceMappingURL=channel.cjs.production.min.js.map

@@ -8,4 +8,4 @@ import { Operation } from 'effection';

send(message: T): void;
subscribe(): Operation<Subscription<T, TClose>>;
subscribe(): import("@effection/subscription").ChainableSubscribable<unknown, any>;
close(...args: TClose extends undefined ? [] : [TClose]): void;
}

@@ -12,4 +12,4 @@ import { SymbolSubscribable, createSubscription } from '@effection/subscription';

_proto[SymbolSubscribable] = function () {
return this.subscribe();
_proto[SymbolSubscribable] = function* () {
return yield this.subscribe();
};

@@ -16,0 +16,0 @@

{
"name": "@effection/channel",
"version": "0.6.6",
"version": "0.6.7",
"description": "MPMC Channel implementation for effection",

@@ -35,5 +35,5 @@ "main": "dist/index.js",

"effection": "^0.7.0",
"@effection/events": "^0.7.7",
"@effection/subscription": "^0.10.0"
"@effection/events": "^0.7.8",
"@effection/subscription": "^0.11.0"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc