-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an option to specify identity for subscriber; Add an option to pu…
…blish event only for specified targets
- Loading branch information
shitzuu
committed
Aug 24, 2024
1 parent
5a4c32a
commit 90cc475
Showing
4 changed files
with
24 additions
and
38 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
package dev.shiza.dew.subscription; | ||
|
||
public interface Subscriber {} | ||
public interface Subscriber { | ||
|
||
default String identity() { | ||
return null; | ||
} | ||
} |