blob: dad908681ae1aa5352dffcc76ca58897ca2c9022 [file] [log] [blame]
package com.intellij.remoteServer.util;
/**
* @author michael.golubev
*/
public interface CallbackWrapper<T> {
void onSuccess(T result);
void onError(String message);
}