Skip to content

Commit

Permalink
Removing name from Throughput, Size and their children objects in ord…
Browse files Browse the repository at this point in the history
…er to simplify syntax since they're meant to be declared only once or never, not twice or more to require identification.
  • Loading branch information
CesarD committed Oct 27, 2024
1 parent f2dfdc8 commit 7b59953
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,53 +210,53 @@ Aggregate :
;

Throughput:
"Throughput" name=ID (OPEN
"Throughput" (OPEN
((commandHandlingRate = CommandHandlingRate)? &
(totalClientsNumber = TotalClientsNumber)? &
(concurrencyConflictChance = ConcurrencyConflictChance)?)
CLOSE)
;

Size:
"Size" name=ID (OPEN
"Size" (OPEN
((eventGrowthRate = EventGrowthRate)? &
(singleInstanceLifetime = SingleInstanceLifetime)? &
(eventsPersistedCount = EventsPersistedCount)?)
CLOSE)
;

CommandHandlingRate:
"CommandHandlingRate" name=ID (OPEN
"CommandHandlingRate" (OPEN
(averageMax=AverageMax)
CLOSE)
;

TotalClientsNumber:
"TotalClientsNumber" name=ID (OPEN
"TotalClientsNumber" (OPEN
(averageMax=AverageMax)
CLOSE)
;

ConcurrencyConflictChance:
"ConcurrencyConflictChance" name=ID (OPEN
"ConcurrencyConflictChance" (OPEN
(averageMax=AverageMax)
CLOSE)
;

EventGrowthRate:
"EventGrowthRate" name=ID (OPEN
"EventGrowthRate" (OPEN
(averageMax=AverageMax)
CLOSE)
;

SingleInstanceLifetime:
"SingleInstanceLifetime" name=ID (OPEN
"SingleInstanceLifetime" (OPEN
(averageMax=AverageMax)
CLOSE)
;

EventsPersistedCount:
"EventsPersistedCount" name=ID (OPEN
"EventsPersistedCount" (OPEN
(averageMax=AverageMax)
CLOSE)
;
Expand Down

0 comments on commit 7b59953

Please sign in to comment.