Skip to content

Commit

Permalink
Add flags for call scope source
Browse files Browse the repository at this point in the history
  • Loading branch information
GedMarc committed Apr 14, 2024
1 parent 24aaddb commit 3429fa7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ public class CallScopeProperties implements Serializable
@Serial
private static final long serialVersionUID = 1L;
/**
* If this call scope is from a web request call
* The source of the call scope entry
*/
private boolean webCall;
private CallScopeSource source;
/**
* Any properties to carry within the call scope
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.guicedee.guicedservlets.websockets.options;

public enum CallScopeSource
{
Http,
WebSocket,
RabbitMQ,
Timer
}

0 comments on commit 3429fa7

Please sign in to comment.