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-eb6cc78

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 @@

10

dist/channel.cjs.development.js

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

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

@@ -30,6 +30,6 @@

_proto.subscribe = function subscribe() {
_proto.subscribe = function subscribe(task) {
var bus = this.bus;
return subscription.createSubscription(function* (publish) {
var subscription = yield events.on(bus, 'event');
return subscription.Subscription.create(task, function* (publish) {
var subscription = events.on(task, bus, 'event');

@@ -36,0 +36,0 @@ while (true) {

@@ -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.SymbolOperationIterable]=function(e){return this.subscribe(e)},r.setMaxListeners=function(e){this.bus.setMaxListeners(e)},r.send=function(e){this.bus.emit("event",{done:!1,value:e})},r.subscribe=function(n){var i=this.bus;return e.Subscription.create(n,(function*(e){for(var r=t.on(n,i,"event");;){var s=(yield r.expect())[0];if(s.done)return s.value;e(s.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

@@ -1,10 +0,10 @@

import { Operation } from 'effection';
import { Subscribable, Subscription, SymbolSubscribable } from '@effection/subscription';
export declare class Channel<T, TClose = undefined> implements Subscribable<T, TClose> {
import { Task } from 'effection';
import { Subscription, SymbolOperationIterable, OperationIterator, OperationIterable } from '@effection/subscription';
export declare class Channel<T, TClose = undefined> implements OperationIterable<T, TClose> {
private bus;
[SymbolSubscribable](): Operation<Subscription<T, TClose>>;
[SymbolOperationIterable](task: Task): OperationIterator<T, TClose>;
setMaxListeners(value: number): void;
send(message: T): void;
subscribe(): Operation<Subscription<T, TClose>>;
subscribe(task: Task): Subscription<T, TClose>;
close(...args: TClose extends undefined ? [] : [TClose]): void;
}

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

import { SymbolSubscribable, createSubscription } from '@effection/subscription';
import { SymbolOperationIterable, Subscription } from '@effection/subscription';
import { on } from '@effection/events';

@@ -12,4 +12,4 @@ import { EventEmitter } from 'events';

_proto[SymbolSubscribable] = function () {
return this.subscribe();
_proto[SymbolOperationIterable] = function (task) {
return this.subscribe(task);
};

@@ -28,6 +28,6 @@

_proto.subscribe = function subscribe() {
_proto.subscribe = function subscribe(task) {
var bus = this.bus;
return createSubscription(function* (publish) {
var subscription = yield on(bus, 'event');
return Subscription.create(task, function* (publish) {
var subscription = on(task, bus, 'event');

@@ -34,0 +34,0 @@ while (true) {

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

@@ -34,6 +34,6 @@ "main": "dist/index.js",

"dependencies": {
"effection": "^0.7.0",
"@effection/events": "^0.7.7",
"@effection/subscription": "^0.10.0"
"effection": "^2.0.0",
"@effection/events": "^2.0.0",
"@effection/subscription": "^2.0.0"
}
}

@@ -22,3 +22,3 @@ # @effection/channel

import { main } from '@effection/node';
import { timeout } from 'effection';
import { sleep } from 'effection';

@@ -30,3 +30,3 @@ main(function*() {

while(true) {
yield timeout(1000);
yield sleep(1000);
channel.send({ message: "ping" });

@@ -33,0 +33,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