All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yy.httpproxy.ReplyHandler Maven / Gradle / Ivy

There is a newer version: 1.0.45
Show newest version
package com.yy.httpproxy;

import android.util.Log;

import com.google.gson.Gson;

import java.lang.reflect.Type;

public abstract class ReplyHandler {

    public Class clazz;
    private Type type;

    public ReplyHandler() {

    }

    public ReplyHandler(Class clazz) {
        this.clazz = clazz;
    }

    public ReplyHandler(Type type) {
        this.type = type;
    }

    public abstract void onSuccess(T result);

    public abstract void onError(int code, String message);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy