Giter Club home page Giter Club logo

portableandroidhandler's Introduction

PortableAndroidHandler

Pure Java implementation of Android Handler. This is helpful to test Android Handler based logic in a pure Java project.

Use DelayQueue internal to implement the MessageQuue.

The project is still working, and most of the Android Handler related apis will be completed later on.

Usage

It has been deployed to mavenCentral:

implementation("com.bennyhuo:portable-android-handler:1.0")

First you should setup your own looper thread like what Android does in ActivityThread:

Looper.prepare();
// Create a new Thread to use your handler here.
Looper.loop();
//unreachable unless you quit the looper.

Reference

This library is mentioned in my Android Interview Tutorials: 破解Android高级面试

portableandroidhandler's People

Contributors

bennyhuo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

portableandroidhandler's Issues

POSITION

Message next = queue.take();
if (next == POISON) {
return null;
}
老哥,这句看不懂。。。。

about order

HandlerThread handlerThread = new HandlerThread("Working");
handlerThread.start();
for(int i = 0;i< 400;i++){
BaseTestHandler handler = new BaseTestHandler( handlerThread.getLooper());
Message message = new Message();
message.obj = "OK"+i;
handler.sendMessage(message);
}

为何不是按照顺序输出,我并没有延迟的情况下。

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.