Skip to content

Commit

Permalink
make properties private
Browse files Browse the repository at this point in the history
  • Loading branch information
hossam-nasr committed Apr 11, 2022
1 parent 5673d61 commit 0d8004e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/durableorchestrationcontext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class DurableOrchestrationContext {
* This duration property is determined by the underlying storage
* solution and passed to the SDK from the extension.
*/
public maximumShortTimerDuration: moment.Duration | undefined;
private readonly maximumShortTimerDuration: moment.Duration | undefined;

/**
* A duration property which defines the duration of smaller
Expand All @@ -131,7 +131,7 @@ export class DurableOrchestrationContext {
* This duration property is determined by the underlying
* storage solution and passed to the SDK from the extension.
*/
public longRunningTimerIntervalDuration: moment.Duration | undefined;
private readonly longRunningTimerIntervalDuration: moment.Duration | undefined;

/**
* Gets the current schema version that this execution is
Expand All @@ -140,7 +140,7 @@ export class DurableOrchestrationContext {
* Different schema versions can allow different behavior.
* For example, long timers are only supported in schema version >=3
*/
public schemaVersion: ReplaySchema;
private readonly schemaVersion: ReplaySchema;

/**
* @hidden
Expand Down

0 comments on commit 0d8004e

Please sign in to comment.