blob: 4bb055c754d25c182e70cc11bcfd120869696d4f [file] [log] [blame]
package org.jetbrains.rpc;
import org.jetbrains.annotations.NotNull;
public interface ResultReader<RESPONSE> {
<RESULT> RESULT readResult(@NotNull String readMethodName, @NotNull RESPONSE successResponse);
}