Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.
/ http Public archive

[Discontinued] Extra components of org.cufy.http for comfort in android.

License

Notifications You must be signed in to change notification settings

cufyorg-archive/http

Repository files navigation

org.cufyx.http

Extra components of the org.cufy.http for comfort in android.

Import (Gradle)

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

dependencies {
    //import the `org.cufy.http` library
    //replace TAG with the needed version.
    implementation 'org.cufy:http:TAG'

    //import this library
    //replace TAG with the needed version.
    implementation 'org.cufyx:http:TAG'
}

Example

XClient.client(context)
    .request(r -> r
        .setUri("http://example.com")
    )
    .onh(Client.CONNECTED, (client, response) -> {
        //already in UI thread
        Toast.makeText(client.getContext(), response.getReasonPhrase().toString(), Toast.LENGTH_LONG).show();
    })
    .onh(Client.DISCONNECTED, (client, exception) -> {
        Toast.makeText(client.getContext(), exception.getMessage(), Toast.LENGTH_LONG).show();
    })
    .connect();

Contact Info

LICENCE

Copyright 2021 Cufy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

[Discontinued] Extra components of org.cufy.http for comfort in android.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages