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

io.femo.http.events.HttpSentEvent Maven / Gradle / Ivy

Go to download

An easy to use HTTP API, that supports synchronous and asynchronous execution of HTTP request. On android only asynchronous driver is supported. This library has been backported to jdk 7 to retain compatibility with android!

The newest version!
package io.femo.http.events;

import io.femo.http.HttpRequest;

/**
 * Created by felix on 2/11/16.
 */
public class HttpSentEvent extends HttpEvent {

    private HttpRequest request;

    public HttpSentEvent(HttpRequest request) {
        super(HttpEventType.SENT);
        this.request = request;
    }

    public HttpRequest request() {
        return request;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy