EventBus Annotation Processor

Precompiler for EventBus Annotations.

License

License

Categories

Categories

EventBus Application Layer Libs Messaging
GroupId

GroupId

de.greenrobot
ArtifactId

ArtifactId

eventbus-annotation-processor
Last Version

Last Version

3.0.0-beta1
Release Date

Release Date

Type

Type

jar
Description

Description

EventBus Annotation Processor
Precompiler for EventBus Annotations.
Project URL

Project URL

https://github.com/greenrobot/EventBus
Project Organization

Project Organization

greenrobot
Source Code Management

Source Code Management

https://github.com/greenrobot/EventBus

Download eventbus-annotation-processor

How to add to project

<!-- https://jarcasting.com/artifacts/de.greenrobot/eventbus-annotation-processor/ -->
<dependency>
    <groupId>de.greenrobot</groupId>
    <artifactId>eventbus-annotation-processor</artifactId>
    <version>3.0.0-beta1</version>
</dependency>
// https://jarcasting.com/artifacts/de.greenrobot/eventbus-annotation-processor/
implementation 'de.greenrobot:eventbus-annotation-processor:3.0.0-beta1'
// https://jarcasting.com/artifacts/de.greenrobot/eventbus-annotation-processor/
implementation ("de.greenrobot:eventbus-annotation-processor:3.0.0-beta1")
'de.greenrobot:eventbus-annotation-processor:jar:3.0.0-beta1'
<dependency org="de.greenrobot" name="eventbus-annotation-processor" rev="3.0.0-beta1">
  <artifact name="eventbus-annotation-processor" type="jar" />
</dependency>
@Grapes(
@Grab(group='de.greenrobot', module='eventbus-annotation-processor', version='3.0.0-beta1')
)
libraryDependencies += "de.greenrobot" % "eventbus-annotation-processor" % "3.0.0-beta1"
[de.greenrobot/eventbus-annotation-processor "3.0.0-beta1"]

Dependencies

compile (1)

Group / Artifact Type Version
de.greenrobot : eventbus jar 3.0.0-beta1

Project Modules

There are no modules declared in this project.

EventBus

EventBus is a publish/subscribe event bus for Android and Java.

Build Status Follow greenrobot on Twitter

EventBus...

  • simplifies the communication between components
    • decouples event senders and receivers
    • performs well with Activities, Fragments, and background threads
    • avoids complex and error-prone dependencies and life cycle issues
  • makes your code simpler
  • is fast
  • is tiny (~60k jar)
  • is proven in practice by apps with 1,000,000,000+ installs
  • has advanced features like delivery threads, subscriber priorities, etc.

EventBus in 3 steps

  1. Define events:

    public static class MessageEvent { /* Additional fields if needed */ }
  2. Prepare subscribers: Declare and annotate your subscribing method, optionally specify a thread mode:

    @Subscribe(threadMode = ThreadMode.MAIN)  
    public void onMessageEvent(MessageEvent event) {/* Do something */};

    Register and unregister your subscriber. For example on Android, activities and fragments should usually register according to their life cycle:

     @Override
     public void onStart() {
         super.onStart();
         EventBus.getDefault().register(this);
     }
    
     @Override
     public void onStop() {
         super.onStop();
         EventBus.getDefault().unregister(this);
     }
  3. Post events:

     EventBus.getDefault().post(new MessageEvent());

Read the full getting started guide.

There are also some examples.

Note: we highly recommend the EventBus annotation processor with its subscriber index. This will avoid some reflection related problems seen in the wild.

Add EventBus to your project

Available on Maven Central.

Via Gradle:

implementation 'org.greenrobot:eventbus:3.2.0'

Via Maven:

<dependency>
    <groupId>org.greenrobot</groupId>
    <artifactId>eventbus</artifactId>
    <version>3.2.0</version>
</dependency>

R8, ProGuard

If your project uses R8 or ProGuard add the following rules:

-keepattributes *Annotation*
-keepclassmembers class * {
    @org.greenrobot.eventbus.Subscribe <methods>;
}
-keep enum org.greenrobot.eventbus.ThreadMode { *; }
 
# And if you use AsyncExecutor:
-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent {
    <init>(java.lang.Throwable);
}

Homepage, Documentation, Links

For more details please check the EventBus website. Here are some direct links you may find useful:

Features

Documentation

Changelog

FAQ

How does EventBus compare to other solutions, like Otto from Square? Check this comparison.

License

Copyright (C) 2012-2020 Markus Junginger, greenrobot (https://greenrobot.org)

EventBus binaries and source code can be used according to the Apache License, Version 2.0.

Other projects by greenrobot

ObjectBox (GitHub) is a new superfast object-oriented database.

Essentials is a set of utility classes and hash functions for Android & Java projects.

greenDAO is an ORM optimized for Android: it maps database tables to Java objects and uses code generation for optimal speed.

Versions

Version
3.0.0-beta1