Skip to content

Commit

Permalink
add javadoc to messaging constants
Browse files Browse the repository at this point in the history
Signed-off-by: Yannic Klem <yannic.klem@bosch.io>
  • Loading branch information
Yannic92 committed Sep 2, 2022
1 parent 46b8be8 commit d0d3946
Showing 1 changed file with 7 additions and 0 deletions.
Expand Up @@ -26,6 +26,10 @@ public final class ThingsMessagingConstants {
@SuppressWarnings("squid:S1075")
private static final String ROOT_ACTOR_PATH = "/user/thingsRoot/";

/**
* Name of the actor created by ThingsPersistenceStreamingActorCreator.
* To query this actor use the {@link #THINGS_SNAPSHOT_STREAMING_ACTOR_PATH actor path}.
*/
public static final String THINGS_PERSISTENCE_STREAMING_ACTOR_NAME = "snapshotStreamingActor";

/**
Expand All @@ -34,6 +38,9 @@ public final class ThingsMessagingConstants {
public static final String THINGS_SNAPSHOT_STREAMING_ACTOR_PATH =
ROOT_ACTOR_PATH + THINGS_PERSISTENCE_STREAMING_ACTOR_NAME;

/**
* Name of ThingsAggregatorActor. To query this actor use the the {@link #THINGS_AGGREGATOR_ACTOR_PATH actor path}.
*/
public static final String THINGS_AGGREGATOR_ACTOR_NAME = "aggregator";

/**
Expand Down

0 comments on commit d0d3946

Please sign in to comment.