-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe4fdc8
commit 39654f9
Showing
3 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/java/io/graversen/rust/rcon/RustTeamsEventListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.graversen.rust.rcon; | ||
|
||
import com.google.common.eventbus.Subscribe; | ||
import io.graversen.rust.rcon.event.server.RustTeamsEvent; | ||
import lombok.AccessLevel; | ||
import lombok.NonNull; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
import java.util.List; | ||
import java.util.function.Consumer; | ||
|
||
@RequiredArgsConstructor(access = AccessLevel.PACKAGE) | ||
public class RustTeamsEventListener { | ||
private final @NonNull Consumer<List<RustTeam>> rustTeamsConsumer; | ||
|
||
@Subscribe | ||
public void onRustTeams(RustTeamsEvent rustTeamsEvent) { | ||
rustTeamsConsumer.accept(rustTeamsEvent.getRustTeams()); | ||
} | ||
} |