Socket
Socket
Sign inDemoInstall

@azure/abort-controller

Package Overview
Dependencies
Maintainers
2
Versions
315
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azure/abort-controller

Microsoft Azure SDK for JavaScript - Aborter


Version published
Weekly downloads
9.8M
decreased by-18.97%
Maintainers
2
Weekly downloads
 
Created

What is @azure/abort-controller?

The @azure/abort-controller npm package provides a way to use AbortController and AbortSignal, which are interfaces for abortable operations, in the Azure SDKs. These are particularly useful for cancelling asynchronous operations in JavaScript, such as network requests or long-running processes.

What are @azure/abort-controller's main functionalities?

Creating an AbortController and AbortSignal

This feature allows you to create an instance of AbortController and retrieve its AbortSignal. The signal can then be passed to operations that support cancellation.

const { AbortController } = require('@azure/abort-controller');
const controller = new AbortController();
const signal = controller.signal;

Aborting an operation

This feature enables you to abort an operation by calling the `abort` method on the controller. Any operation listening to the associated signal will be cancelled.

controller.abort();

Listening for an abort signal

This feature allows you to listen for an abort event on the AbortSignal. This is useful for performing cleanup or rollback actions when an operation is cancelled.

signal.addEventListener('abort', () => {
  console.log('Operation aborted!');
});

Other packages similar to @azure/abort-controller

Keywords

FAQs

Package last updated on 19 Jul 2024

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc