com.microsoft.bot.builder.core.MiddlewareCall Maven / Gradle / Ivy
package com.microsoft.bot.builder.core;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
@FunctionalInterface
public interface MiddlewareCall {
CompletableFuture requestHandler(TurnContext tc, NextDelegate nd) throws ExecutionException, InterruptedException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy