Questions pertaining to the GWT Event Bus.
-1
votes
2answers
198 views
Akka Event Bus Tutorial [closed]
Are there any good tutorials/explanations on how to use the the event bus in akka?
I've read through the Akka doc but I find it difficult to understand how to use the event bus
0
votes
2answers
35 views
App crashes saying that a library is not included, even though it is
My Android app seemed to have been working fine till i did a git reset on it. Now it keep crashing and says that a library I am using is not present.
This is the crash log I get
04-11 16:31:31.230: ...
0
votes
2answers
117 views
How to share an EventBus between two modules
I’m building a large application and I would like to split it in several modules like Core Module for initialization, users management, etc…, Customer Module, Production Module, etc…
I want to split ...
6
votes
2answers
190 views
How do I tell a GWT cell widget data has changed via the Event Bus?
I have a GWT Cell Tree that I use to display a file structure from a CMS. I am using a AsyncDataProvider that loads data from a custom RPC class I created. I also have a Web Socket system that will ...
0
votes
1answer
223 views
null pointer exception with Fragments and EventBus
I have gone through various methods to make this project work and have finally settled on EventBus from Green Robot. My second question in relation to this on here is here:-Multiple Fragment to ...
5
votes
1answer
397 views
When to use an Event Bus?
I'm designing the backend for a new Java web app and am trying to decide whether or not to use an Event Bus; specifically the Guava EventBus.
Most server-side requests will be synchronous: that is, ...
0
votes
1answer
250 views
greenrobot EventBus post event in Android
By using EventBus, I need to post an event(MyEvent) in an Activity and receive the event in another Activity in Android. I tried the greenrobot EventBus performance test project but could not get how ...
3
votes
3answers
504 views
Register beans automatically in Guava EventBus with Spring IoC
Let's say I have an interface for language change event in my application (it's based on Vaadin):
public interface ILanguageChangeListener{
@Subscribe onLanguageChange(LanguageChangeEvent event);
...
1
vote
2answers
596 views
GWT - MVP Event bus. Multiple handlers getting created
I am working in a large application I inherited, and am running into some best practices issues.
Every time a user navigates to our Customer Edit page, a new presenter is created, and a view is set. ...
0
votes
2answers
188 views
Can event bus be used to communicate between different projects or applications
I am creating a gwt widget library for our internal use. I am asked to fire an event whenever any event occurs on any of the controls in my gwt widget which would then be listened to by the ...
0
votes
1answer
135 views
Any library that helps build a clustered, distributed, event bus library? [closed]
Is there any Java library that allows to build a clustered (thus, distributed) event bus?
I'm not talking about relying to external pub/sub services like ZeroMQ/RabbitMQ/Redis, but a Java library ...
2
votes
1answer
201 views
GWT Activity : How to use an activity, place, eventbus and uibinder
I'm new at GWT and I wonder myself how to use an Activity, Place ,EventBus and UIbinder.
The layout of my app is smth like this :
Widget 1:
<g:DockLayoutPanel ui:field="myPanel" unit='PX'>
...
0
votes
1answer
101 views
GWT: Injected PlaceManager is null
On the code below I am injecting a PlaceManager on the 4th line, and trying to use the placeManager.revealPlace() on the last line. However, at that moment I get a null exception.
Furthermore, if I ...
0
votes
0answers
75 views
Custom MVP - make EventBus available for all presenters within same thread
I am prototyping with Vaadin and trying to implement MVP. I want to propagate events via Guava's EventBus - so I am making all my presenters to implement this interface:
public interface ...
1
vote
2answers
162 views
How can I share events with EventBus in different webapps?
I'm using tomcat. I want put the guava jar and my own jar in tomcat/lib. My jar has a factory to get the event bus and all webapps get access to that factory. I don't know how can I register a ...
0
votes
1answer
254 views
Scala : Akka - multiple event buses for actorsystem or having prioritized events?
I have single ActorSystem, which has several subscribers to it's eventStream. Application may produce thousands of messages per second, and some of the messages are more important than the rest of. So ...
1
vote
1answer
154 views
Why is Guava issuing the error “missing event handler for an > annotated method”?
I'm getting the following error in one of my classes on the when attempting to unregister it.
java.lang.IllegalArgumentException: missing event handler for an
annotated method. Is
...
0
votes
1answer
115 views
Is there a cluster ready java event bus?
I did some unsuccessful research on this subject today.
What I'am looking for is a extremely lightweight event and/or messaging soluting that is ready to get clustered. What I need to to is propagate ...
0
votes
0answers
60 views
generic type for MouseWheelEvent MouseDownEvent MouseOutEvent
I need various call to the event bus depending on the type of event, for example :
// MOUSE OUT = hide
@UiHandler("focus")
void onMouseOutTooltip(**MouseOutEvent** event) {
...
4
votes
1answer
2k views
Example of Akka EventBus for Java
Need some advice of how to use EventBus provided by Akka in Java (not Scala!). The documentation on website seems to be incomplete: http://doc.akka.io/docs/akka/2.0.1/java/event-bus.html
As far as I ...
1
vote
1answer
496 views
Guava Eventbus not working
I'm trying to use the Guava eventbus in Android but it my subscribed event doesn't seem to work... What am I doing wrong?
This is my activity:
package test.eventbus;
import ...
2
votes
2answers
418 views
best practice to use EventBus with GWT components
Say I have a component C that is being used in 2 places in my application. For example, I have a list of folders that are being displayed in 2 tabs. When user renames a folder in one part, this change ...
2
votes
1answer
221 views
What is the EventBus passed into the AbstractActivity.start in GWT intended to be used for?
Before using the activities framework I would typically have one Global/Singleton instance of the GWT EventBus. Now I noticed the activity class passes an instance into my activities. Is this ...
4
votes
3answers
687 views
Trouble with EventBus and Gin in Gwt 2.4
I'm trying to use Gin in MVP GWT 2.4. In my module, I have:
import com.google.web.bindery.event.shared.EventBus;
import com.google.web.bindery.event.shared.SimpleEventBus;
@Override
...
1
vote
1answer
545 views
How does HandlerManager work with source?
I've analyzed HandlerManager and I do not see how it handles event source. Line 117:
public void fireEvent(GwtEvent<?> event) {
...
Object oldSource = event.getSource();
...
7
votes
1answer
805 views
Annotations vs. Interface in Guava EventBus
The Guava developers chose to use annotations:
class EventBusChangeRecorder {
@Subscribe
void recordCustomerChange(ChangeEvent e) {
recordChange(e.getChange());
}
}
... instead of ...
2
votes
2answers
259 views
How to listen to ALL events dispatched on the GWT Event Bus?
I want to be able to listen to all events dispatched on the Event Bus, regardless of type. How can I do this?
5
votes
3answers
898 views
EventBus role in GWT
I read up about this cool event handling in GWT using EventBus and so far I really like it. But I don't really grasp the concept when should I use it. All the time?
Can I overuse it? Should I use it ...
1
vote
2answers
741 views
Eventbus event order
Morning,
I'm using the SimpleEvent bus to send data from my centralized data reviver to the Widgets. This works really fine, I get one set of new Data form the server, the success method of the RPC ...
1
vote
1answer
2k views
javascript event bus architecture
In this video at 20:50 (corresponding slide), Nicholas Zakas presents what I think is an Event Bus architecture. What I don't know is whether the calls that interact with the Bus should be ...
2
votes
3answers
1k views
Event Bus implementation question
I'm trying to implement simple Event Bus
I started like this:
public class RegistrationData
{
public object RegisteredObject { get; set; }
public Type eventType { get; set; }
public ...
2
votes
1answer
1k views
Google Web Toolkit (GWT) EventBus event firing/handling
Background Story:
I am developing a GWT application, using the standard MVP design pattern, and also using RPC to get data from my custom data handling servlet (does a lot behind the scenes). Anyway, ...
1
vote
1answer
120 views
One Presenter needing Access to another Presenter's State in GWT MVP
I am making an application where I have three main Presenters.
In one say "ListPresenter", I have a Tree with a list of cities.
In one say "WritePresenter", I type in some text and hit update. The ...
1
vote
3answers
1k views
Is the eventbus a Mediator or Observer Pattern
Is the the eventbus more a mediator or observer. According to google,
"eventbus mediator" gets 2.430 hits and
"eventbus observer" gets 3.850 hits.
From the discription, they would both math, what I ...
2
votes
2answers
2k views
Event bus review
I'm starting with GWT and learning Event bus concepts now. I find this solution extremely complicated. So I tried to simplify it by writing prototype by myself to see all problems.
At first I will ...
3
votes
3answers
559 views
GWT Event Bus concept in other framework
I am not aware of the many frameworks on the market but i wanted to know something, Like the event bus concept in GWT, does this technique exist in other framework??
2
votes
4answers
276 views
Managaing Jquery custom events
I've done a few hours of additional research but I still can't find a good pattern to what I would think is a common problem.
I'm working on a .Net MVC2 app. Our app is made up of a main page then a ...
20
votes
7answers
7k views
jQuery plugin for Event Driven Architecture?
Are there any Event Driven Architecture jQuery plugins?
Step 1: Subscribing
The subscribers subscribe to the event handler in the middle, and pass in a callback method, as well as the name of the ...