Example usage for org.springframework.web.reactive.result.method SyncInvocableHandlerMethod SyncInvocableHandlerMethod

List of usage examples for org.springframework.web.reactive.result.method SyncInvocableHandlerMethod SyncInvocableHandlerMethod

Introduction

In this page you can find the example usage for org.springframework.web.reactive.result.method SyncInvocableHandlerMethod SyncInvocableHandlerMethod.

Prototype

public SyncInvocableHandlerMethod(Object bean, Method method) 

Source Link

Usage

From source file:org.springframework.web.reactive.result.method.annotation.ControllerMethodResolver.java

private SyncInvocableHandlerMethod getInitBinderMethod(Object bean, Method method) {
    SyncInvocableHandlerMethod invocable = new SyncInvocableHandlerMethod(bean, method);
    invocable.setArgumentResolvers(this.initBinderResolvers);
    return invocable;
}