Groovy Documentation

org.gradle.tooling
[Java] Interface ResultHandler


public interface ResultHandler

A handler for an asynchronous operation which returns an object of type T.

Parameters:
- The result type.


Method Summary
void onComplete(java.lang.Object result)

void onFailure(GradleConnectionException failure)

 

Method Detail

onComplete

public void onComplete(java.lang.Object result)


onFailure

public void onFailure(GradleConnectionException failure)


 

Groovy Documentation