Is it possible to use type variance in CDI events? here is the case:

  • Suppose i have a root event type MyEvent and subclass DummyEvent
  • My goal is to process a list of events received from a remote source List<? extends MyEvent>, containing DummyEvent instances

How can i do this?

If i loop through the collection calling fire() on each event, it will invoke @Observes MyEvent evt but not @Observes DummyEvent evt methods.

** update **

Created a sample code to clarify the issue:

https://github.com/jfaerman/jfaerman/blob/master/test-cdi/src/main/java/jfaerman/App.java

I would like the event to be fired twice, one time individually and one time from the list.

link|improve this question

74% accept rate
Which CDI Implementation are you using? – John Ament Jan 29 at 23:28
weld in jboss as 7 – Julio Faerman Jan 30 at 12:16
feedback

3 Answers

up vote 2 down vote accepted

It works injecting the BeanManager instad of Event, as tested by this servlet:

https://github.com/jfaerman/cdi-tests/blob/master/src/main/java/jfaerman/TestEventsServlet.java

Answered by Jozef Hartinger in this thread in the Weld forum:

https://community.jboss.org/message/716185

link|improve this answer
very nice +1 for sharing with us – dcernahoschi Feb 14 at 0:28
feedback

Mhh I dont get it ... how does your actual code fore firing the event look like? ASFAIK you inject the javax.enterprise.event.Event interface and pass an instance to its fire method, which by that declares the called observer. And if inheritance is involved, like in your case, both Observer would be called, if you fire a DummyEvent. If you wanted to further specify the events you would use Qualifiers.

@Inject @Any Event<DummyEvent> dummyEvent;
...
dummyEvent.fire(list.get(i));

/* edit */

The "problem" is the following line of code:

weld.event().select(MyEvent.class).fire(evt);

As soon as you specifiy the event's type (MyEvent.class), the actual event instance's type (evt) does not matter anymore. One possibility is to extend your class hirachy with Qualifiers. E.g:

@ChildEvent.Child
public class ChildEvent extends BaseEvent{

    @Qualifier
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER})
    public @interface Child{
    }

    public void eventAction() {
        System.out.println("child");
    }    
}

After that further specify the Observer:

public void observerChild(@Observes @ChildEvent.Child BaseEvent child){
        System.out.println("child with annotation event");
}

Finally, when you have just access to base classes, like in your example where you itarate through a list, you can specify the exact type/qualifier before firing the event like that:

for (BaseEvent e : list){
    childEvent.select(e.getClass().getAnnotations()[0]).fire(e);
}

As mentioned above, if you have a general Observer (shown below), it will be called for each event.

public void observerBase(@Observes  BaseEvent base){
    System.out.println("base event");
}
link|improve this answer
Please see the code example i just added, hope to make the issue a little more clear. – Julio Faerman Feb 7 at 18:56
Edited the answer, maybe it helps. – Roland Tiefenbrunner Feb 9 at 22:00
It helps, but there i a solution using only the types... thanks for posting, learned the trick :) – Julio Faerman Feb 13 at 15:37
feedback

cdi and weld aims for "strong typing": verifying the types of the injected beans at compile time.

The code you're trying:

Class<? extends MyEvent> eventClass = evt.getClass();
weld.event().select(eventClass).fire(eventClass.cast(evt));

don't compile beacause you don't know the event class at compile time(is ?) and the compiler can't verify that this class extends evt's object class as required by the Event interface API.

http://docs.jboss.org/cdi/api/1.0/javax/enterprise/event/Event.html

But you can select between event observers at runtime with qualifiers.

http://docs.jboss.org/weld/reference/1.0.1-Final/en-US/html_single/#d0e4044

For example:

 @Qualifier
 @Target({FIELD, PARAMETER})
 @Retention(RUNTIME)
 public @interface My {}     

 public class TestEvent {
     public Annotation getQualifier() {
         return new AnnotationLiteral<My>(){}
     }
 }

 @Qualifier
 @Target({FIELD, PARAMETER})
 @Retention(RUNTIME)
 public @interface Dummy {}

 public class OtherTestEvent extends TestEvent {
     public Annotation getQualifier() {
         return new AnnotationLiteral<Dummy>(){}
     }
 }

You fire the event like this:

for(TestEvent evt:events) {
   weld.event().select(evt.getQualifier).fire(evt);
}

And then you define observers for each qualifier:

@Singleton
class Listener {
    public void listenToDummyEvent(@Observes @My TestEvent event) {
    }

    public void listenToDummyEvent(@Observes @Dummy TestEvent event) {
    }
}

If you have many events you can define a qualifier with members in order to not have too many annotations. See:

http://docs.jboss.org/weld/reference/1.0.1-Final/en-US/html_single/#d0e1291

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.