Skip to content

Commit

Permalink
Expose sockets statically
Browse files Browse the repository at this point in the history
  • Loading branch information
GedMarc committed Aug 27, 2024
1 parent 697422e commit 5b84b67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ public interface IGuicedWebSocket

void broadcastMessageSync(String groupName, String message);



static void addWebSocketMessageReceiver(IWebSocketMessageReceiver receiver)
{
for (String messageName : receiver.messageNames())
Expand Down
2 changes: 1 addition & 1 deletion guice-inject-client/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
module com.guicedee.client {
requires transitive com.google.guice;
requires transitive io.github.classgraph;
requires transitive com.fasterxml.jackson.databind;

//requires transitive jakarta.validation;

Expand Down Expand Up @@ -37,6 +36,7 @@
//requires jul.to.slf4j;
requires org.apache.logging.log4j.core;
requires org.apache.logging.log4j.jul;
requires io.vertx;

uses IGuiceProvider;
uses IJobServiceProvider;
Expand Down

0 comments on commit 5b84b67

Please sign in to comment.