Example usage for org.springframework.web.client AsyncRequestCallback interface-usage

List of usage examples for org.springframework.web.client AsyncRequestCallback interface-usage

Introduction

In this page you can find the example usage for org.springframework.web.client AsyncRequestCallback interface-usage.

Usage

From source file org.zalando.riptide.AsyncRequestCallbackAdapter.java

final class AsyncRequestCallbackAdapter<T> implements AsyncRequestCallback {

    private final Callback<T> callback;

    public AsyncRequestCallbackAdapter(final Callback<T> callback) {
        this.callback = callback;