Some enhancement like that, yeah. A similar solution was already stated in CDI-493 and CDI-516. This new API enhancement should accept any java.lang.reflect.Type, that does not contain a TypeVariable, but will throw an IllegalArgumentException otherwise. Of course only the raw type of the event object could only be checked against the type parameter for consistency, so we loose a good amount of type safety here. But as these API is primary meant to be used by extensions like the majority of BeanManager methods, at least I am fine with it.
In addition the original methods (fireEvent(event, qualifiers) and resolveObserverMethods(event, qualifiers)) must be kept for backward compability and probably will keep the use the event object's class for resolution, which implies the event class must not have any type variable as this will cause the documented IllegalArgumentException.
tzwoenn I reopened
CDI-516and targeted to be discussed during CDI 2.1.This ticket is only a mean to get a more standard and typesafe way to fire event from the BeanManager.