Skip to content

Commit

Permalink
Expose sockets statically
Browse files Browse the repository at this point in the history
GedMarc committed Aug 27, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 697422e commit 4ee7077
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -21,6 +21,8 @@ public interface IGuicedWebSocket

void broadcastMessageSync(String groupName, String message);



static void addWebSocketMessageReceiver(IWebSocketMessageReceiver receiver)
{
for (String messageName : receiver.messageNames())
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
@@ -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;

@@ -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;

0 comments on commit 4ee7077

Please sign in to comment.