Home | History | Annotate | Download | only in ch

Lines Matching defs:future

280     static <V,A> void invokeUnchecked(PendingFuture<V,A> future) {
281 assert future.isDone();
282 CompletionHandler<V,? super A> handler = future.handler();
285 future.attachment(),
286 future.value(),
287 future.exception());
296 static <V,A> void invoke(PendingFuture<V,A> future) {
297 assert future.isDone();
298 CompletionHandler<V,? super A> handler = future.handler();
300 invoke(future.channel(),
302 future.attachment(),
303 future.value(),
304 future.exception());
312 static <V,A> void invokeIndirectly(PendingFuture<V,A> future) {
313 assert future.isDone();
314 CompletionHandler<V,? super A> handler = future.handler();
316 invokeIndirectly(future.channel(),
318 future.attachment(),
319 future.value(),
320 future.exception());