Top "Chain" questions

Use the tag "method-chaining' if referring to the invocation of multiple methods against a single object.

Promises: Execute something regardless of resolve/reject?

Using the Promises design pattern, is it possible to implement the following: var a, promise if promise.resolve a = promise.…

javascript asynchronous promise chain
attempting to break jQuery promise chain with .then, .fail and .reject

Update: this issue was a result of jQuery 1.7 vs 1.8. Do not ever use promises in 1.7 beacuse they aren't chainable with …

jquery deferred chain promise
Chain filters in logstash

Is it possible to use logstash filters in sequence? For example I want to parse message into json then newly …

filter logstash chain
CXF WS, Interceptor: stop processing, respond with fault

I'm scratching my head over this: Using an Interceptor to check a few SOAP headers, how can I abort the …

cxf interceptor fault abort chain
AngularJS promise chain

I have my application that should open a popup ask a confirmation at the user, then make an ajax cal …

angularjs promise chain
How to route a chain of tasks to a specific queue in celery?

When I route a task to a particular queue it works: task.apply_async(queue='beetroot') But if I create …

python rabbitmq celery chain
Understanding javascript promises; stacks and chaining

I've been running into a couple of problems with javascript promises, particularly with stacked chains. Can anyone explain to me …

javascript promise chain
Accessing variables inside a Javascript promise chain

I am using a chained promise in JavaScript (I think). There is a then() function in the chain. I want …

javascript methods promise httpresponse chain
Chaining Singles together in RxJava

I am using RxJava in my android app along with Retrofit to make network requests to a server. I am …

android promise rx-java chain
Javascript call Parent constructor in the Child (prototypical inheritance) - How it works?

I know it works, but I don't know why and how. What are the mechanics? // Parent constructor function Parent(name){ …

javascript constructor prototype call chain