Tweak test script no issue #
[arvados.git] / src / main / java / org / arvados / client / api / client / ProgressListener.java
1 /*
2  * Copyright (C) The Arvados Authors. All rights reserved.
3  *
4  * SPDX-License-Identifier: AGPL-3.0 OR Apache-2.0
5  *
6  */
7
8 package org.arvados.client.api.client;
9
10 @FunctionalInterface
11 public interface ProgressListener {
12
13     void updateProgress(long num);
14 }