Injecting Atmosphere's Components in Jersey - Atmosphere/atmosphere GitHub Wiki

Sometimes it is needed to inject Atmosphere components in a Jersey resource. The following components can be injected by using the @Context, @PathParam @QueryParam, @MatrixParam, @HeaderParam, @CookieParam, @FormParam etc. annotation

  • AtmosphereResource
  • Broadcaster
  • BroadcasterFactory

For example @Context

  @Context AtmosphereResource resource

@PathParam

  public String inject(@PathParam("test") Broadcaster broadcaster) {
     ...
  }