(InputStream stream, long contentLength)
| 301 | } |
| 302 | |
| 303 | @Override |
| 304 | public VaasVerdict forStream(InputStream stream, long contentLength) throws InterruptedException, VaasAuthenticationException, VaasClientException, VaasServerException { |
| 305 | try { |
| 306 | return forStreamAsync(stream, contentLength).get(); |
| 307 | } catch (ExecutionException | CompletionException e) { |
| 308 | throwInnerException(e); |
| 309 | return null; |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | @Override |
| 314 | public VaasVerdict forStream(InputStream stream, long contentLength, ForStreamOptions options) throws InterruptedException, VaasAuthenticationException, VaasClientException, VaasServerException { |
no test coverage detected