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.7-eb6cc78 to 0.6.7-f890ffb

10

dist/channel.cjs.development.js

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

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

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

_proto.subscribe = function subscribe(task) {
_proto.subscribe = function subscribe() {
var bus = this.bus;
return subscription.Subscription.create(task, function* (publish) {
var subscription = events.on(task, bus, 'event');
return subscription.createSubscription(function* (publish) {
var subscription = yield events.on(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.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}();
"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

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

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

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

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

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

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

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

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

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

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

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

"dependencies": {
"effection": "^2.0.0",
"@effection/events": "^2.0.0",
"@effection/subscription": "^2.0.0"
"effection": "^0.7.0",
"@effection/events": "^0.7.8",
"@effection/subscription": "^0.11.0"
}
}

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

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

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

while(true) {
yield sleep(1000);
yield timeout(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