MCPcopy Index your code
hub / github.com/OpenTSDB/async / Notify

Class Notify

src/DeferredGroup.java:80–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78
79 // Callback used to collect results in the order in which they appear.
80 final class Notify<T> implements Callback<T, T> {
81 public T call(final T arg) {
82 recordCompletion(arg);
83 return arg;
84 }
85 public String toString() {
86 return "notify DeferredGroup@" + DeferredGroup.super.hashCode();
87 }
88 };
89
90 // Callback that preserves the original orders of the Deferreds.
91 final class NotifyOrdered<T> implements Callback<T, T> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected