I've this method:
public ResponseDTO getManh(QueryDTO manhQueryDTO) {
return requestHttpService.post(ManhQueryResponseDTO.class,
uri(properties.getManhattan().getUrl(), REQUEST_QUERY), manhQueryDTO);
}
I need abandon execution of a method after 3 seconds.
does anyone have any idea what to do?