Giter Club home page Giter Club logo

androidping's Introduction

Android Ping 1.0

Ping in Android from your code.

  1. Does NOT invoke CLI ping command.
  2. Support for IPv4 and IPv6.

Implementation notes:

  1. Listener is executed on calling Thread (Not UI Thread).
  2. Requires Lollipop or greater.
  3. As always, don't do I/O on the UI Thread.
  4. Does NOT appear to work with the emulator, make sure you use a real device.

Sample Usage

See the MainActivity for more.

final InetAddress dest = InetAddress.getByName(mHost);
final Ping ping = new Ping(dest, new Ping.PingListener() {
    @Override
    public void onPing(final long timeMs, final int count) {
        Log.d(TAG, "#" + count + " ms: " + timeMs + " ip: " + dest.getHostAddress(), null);
    }

    @Override
    public void onPingException(final Exception e, final int count) {
        Log.e(TAG, "#" + count  + " ip: " + dest.getHostAddress(), e);
    }

});

AyscTask.THREAD_POOL_EXECUTOR.execute(ping);

Bind to android.net.Network

You can bind the ping to a Network (e.g. WiFi or Mobile). See MainActivity for more.

final Ping ping = new Ping(inetAddress, listener);
ping.setNetwork(network);
AyscTask.THREAD_POOL_EXECUTOR.execute(ping);

Build just the library (aar)

gradlew lib:assembleRelease

androidping's People

Contributors

dburckh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.