// 
// Decompiled by Procyon v0.6.0
// 

package com.google.protobuf;

public interface RpcController
{
    void reset();
    
    boolean failed();
    
    String errorText();
    
    void startCancel();
    
    void setFailed(final String reason);
    
    boolean isCanceled();
    
    void notifyOnCancel(final RpcCallback<Object> callback);
}
