Socket
Socket
Sign inDemoInstall

@effection/subscription

Package Overview
Dependencies
Maintainers
1
Versions
151
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@effection/subscription

Effection Subscriptions


Version published
Weekly downloads
1.4K
decreased by-38.63%
Maintainers
1
Weekly downloads
 
Created
Source

@effection/subscription

APIs for producing, consuming and transforming streams of data within effection operations.

createSubscription(publisher)

At it's lowest level, the subscription API does not actually require any helpers to implement, only that the subscription object itself conform to a certain API, and that the caller respect . However, to manually implement this API every time would be unreasonably cumbersome. This is where createSubscription comes in. It returns an operation that produces a Subscription from a publisher. Where publisher is a fuction that takes a publish function and returns an Operation that produces the return value of the subscription.

type Publisher<T> = (publish: (value: T) => void) => Operation<T>;
createSubscription<T, TReturn>(publisher: Publisher<T,TReturn>): Operation<Subscription<T,TReturn>>

the publish function is called to "push" a value out to the subscription so that it will be returned by a subsequent call to the next() operation of the subscription. Publish can be called many times in between subsequent calls to next and still not lose a value.

For example, to implement the on subscription for event emitters:

export function on(emitter, eventName) {
  return createSubscription(function* (publish) {
    let listener = (...args) => publish(args);
    try {
      emitter.on(eventName, listener);
      yield;
    } finally {
      emitter.off(eventName, listener);
    }
  });
}

Now, any event can be consumed as a subscription:

let subscription = yield on(socket, 'message');
while (true) {
  let { value: [message] } = subscription.next();
  yield handleMessage(message);
}

One of the greatest advantages of using createSubscription is that the Subscription produced is an effection resource, and so will automatically be shut down when no longer needed. That way, there is no need to call the unsubscribe() method ever.

SymbolSubscribable

In order to facilitate interoperation of subscription producers and consumers, any object can implement the [SymbolSubscribable]() method in order to be turned into a subscription. This follows the pattern of Symbol.iterator, and Symbol.observable. Any object that implements this method can be consumed as a subscription.

subscribe(source)

In order to lift functions into the context of a subscription, you can use subscribe which can be used to transform subscriptions via combinators.

map(fn)

Returns a new subscribable whose items are transformed by fn. For example:

subscribe(websocket).map(message => JSON.parse(message));

filter(predicate)

Return a new Subscribable that only produces items from its source that match predicate.

subscribe(websocket).filter(message => message.type === 'command');

match(reference)

Return a new Subscribable that only produces items from its source that match reference in the sense that the produced items have the same properties and values as reference.

subscribe(websocket).match({ type: 'command' });

first()

An operation that produces the first item in a subscription or undefined if the subscription has no items.

let message = yield subscribe(websocket).first();

expect()

An operation that produces the first item in a subscription or throws an error if the subscription has no items.

let message = yield subscribe(websocket).expect();

forEach()

Calls the given operation function with each item in the subscription. Returns the return value of the subscriopion when done.

let exitCode = yield subscribe(websocket).forEach(function*(message) {
  // ...
});

FAQs

Package last updated on 01 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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