blob: 4a51497c6ce7ef16b0440411445124cbd79e0c27 [file] [log] [blame]
// Copyright (c) 2022, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.retrace;
import com.android.tools.r8.Keep;
/**
* Supplier of input lines to be retraced.
*
* @param <E> the type of the {@link Throwable}
*/
@FunctionalInterface
@Keep
public interface StreamSupplier<E extends Throwable> {
String getNext() throws E;
}