| 1 | package com.hammurapi.eventbus.local; |
| 2 | |
| 3 | import com.hammurapi.common.TokenExpander; |
| 4 | import com.hammurapi.eventbus.AbstractEventBus; |
| 5 | import com.hammurapi.eventbus.Introspector; |
| 6 | |
| 7 | /** |
| 8 | * Introspector with bound generic parameters. |
| 9 | * @author Pavel Vlasov |
| 10 | * |
| 11 | * @param <E> |
| 12 | * @param <C> |
| 13 | */ |
| 14 | public class LocalIntrospector<E,C> extends Introspector<E, C, Long, AbstractEventBus.Handle<E,Integer,C,Long>, LocalEventStore<E,Integer,C>, LocalEventBus<E, Integer, C>> { |
| 15 | |
| 16 | public LocalIntrospector(ClassLoader classLoader, TokenExpander tokenExpander) { |
| 17 | super(classLoader, tokenExpander); |
| 18 | } |
| 19 | |
| 20 | } |