A port of the jQuery Deferred library to node js.
Create a deferred promise
The most dead-simple trivial Deferred implementation
jQuery 1.8.2 deferred lib for nodeJS.
A lightweight Deferred implementation, on top of Promises/A+
TypeScript definitions for jquery-deferred
Very simple implementation of Deferred for TypeScript
TypeScript definitions for promise-deferred
Babel plugin to transpile import() to a deferred require(), for node
Deferred the ES6 way
Adds deferred script loading support
A fast and minimal deferred implementation for javascript
a deferred source, sink or through pull-stream
The deferred library implemented in `typescript`
Create a deferred promise that is wrappened in a function
deferred (otherwise known as fastSpawn) implementation for Roblox
A lightweight Deferred implementation, using native Promises
Import modules and load them if needed deferred from npm
Modular and fast Promises implementation
Provides 'Deferred', an async coordination primitive.
A reusable deferred
Create a deferred async iterator.
A Promise-compatible abstraction that defers resolving/rejecting promises to another closure.
A deferred library for Node.js and the browser with a simplified jQuery compatible API
Rust crate to help perform deferred execution of code logic.
Deferred execution Rust utilities.
A versatile and easy to use defer statement for Rust. Similar to Go's or Zig's defer.
模仿 jQuery.Deferred(),允许从 Future 实现类实例的外部对正在 pending 的 Future 对象进行 resolve 或 reject 处理。
A lightweight high-performance implementation of Go's defer statement.
A lightweight utility for spawning async tasks with fire-and-forget semantics and deferred result retrieval.
Hyper performant polyglot Database driver
A simple asynchronous runtime for executing async coroutines.
A deferred reference is not an actual reference, it is merely a smart pointer tied to the lifetime of the location it points to.
Asynchronous Deferred Calls
A single-assignment, weak reference wrapper for cyclic node graphs with late initialization
High-performance generational arena using handle-based deferred insertion with O(1) operations
Syntactical sugar around an EM::Deferrable
Makes ActiveRecord defer/postpone saving the records you add to an habtm (has_and_belongs_to_many) or has_many association until you call model.save, allowing validation in the style of normal attributes. Additionally you can check inside before_save filters, if the association was altered.
Adds ability to defer the enqueuing of Sidekiq workers until the end of a block of code.
Deferred for Delayer.
Deferred Jobs
== Synopsys Ruby Enumerable extension. Main idea is lazy computations within enumerators. == Usage Install as a gem: sudo gem install deferred_enum This gem introduces DeferredEnumerator class: ary = [1, 2, 3, 4] deferred = ary.defer # #<DeferredEnumerator: [1, 2, 3, 4]:each> DeferredEnumerator brings some optimizations to all?, any? and none? predicates deferred.all?(&:even?) # Will stop iteration after first false-result = 1 iteration deferred.none?(&:even?) # 2 iterations deferred.any?(&:even?) # 2 iterations It also introduces lazy versions of Enumerable's #select, #map and #reject methods deferred.map { |i| i + 1 } # #<DeferredEnumerator: #<Enumerator::Generator>:each> deferred.select { |i| i.even? } # #<DeferredEnumerator: #<Enumerator::Generator>:each> deferred.reject { |i| i.odd? } # #<DeferredEnumerator: #<Enumerator::Generator>:each> So you can safely chain your filters, they won't be treated as arrays: deferred.map(&:succ).select(&:even?) # #<DeferredEnumerator: #<Enumerator::Generator>:each> You can build chains of Enumerables: deferred.concat([2]).to_a # [1, 2, 3, 4, 2] Or append elements to the end of enumerator: deferred << 2 You can even remove duplicates from enumerator, though this operation can be tough: deferred.uniq # #<DeferredEnumerator: #<Enumerator::Generator>:each> There are many other methods in DeferredEnumerator, please refer to documentation.
A simple library to defer http requests until you can actually process them. (Think webhooks. Stripe webhooks, Twilio status callbacks, ect.)
Collect exceptions rather than exiting early when enumerating atomic operations.
Defered loading Active records and other obejcts to avoid n+1 problem.
Rails 3 engine which provides a hack to avoid RI_ConstraintTrigger Error bug
Avoid n+1 problem by allowing defered load syntax in template
Simple mechanism for deferred execution of a block
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.