com.github.thorbenkuck.keller.event.NativeDispatcherStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keller-events Show documentation
Show all versions of keller-events Show documentation
Keller is a universal base-package
The newest version!
package com.github.thorbenkuck.keller.event;
import com.github.thorbenkuck.keller.utility.Keller;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.stream.Collectors;
final class NativeDispatcherStrategy implements DispatcherStrategy {
private final EventBus eventBus;
NativeDispatcherStrategy(final EventBus eventBus) {
this.eventBus = eventBus;
}
private void dispatch(final List eventBridgeList, final Object event) {
final List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy