List of usage examples for org.springframework.core ParameterizedTypeReference forType
public static <T> ParameterizedTypeReference<T> forType(Type type)
From source file:com.example.SinkExample.java
@Scheduled(fixedRate = 1000) public void poller() { destIn.poll(this.messageHandler, ParameterizedTypeReference.forType(UserMessage.class)); }