@fluidframework/agent-scheduler 2.0.0-dev.7.4.0.215930 → 2.0.0-dev.7.4.0.216897

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,8 +9,7 @@ import { IAgentScheduler } from "./agent";
9
9
 
10
10
  /**
11
11
  * Events emitted by {@link TaskSubscription}.
12
- *
13
- * @public
12
+ * @internal
14
13
  */
15
14
  export interface ITaskSubscriptionEvents extends IEvent {
16
15
  (event: "gotTask" | "lostTask", listener: () => void);
@@ -18,8 +17,7 @@ export interface ITaskSubscriptionEvents extends IEvent {
18
17
 
19
18
  /**
20
19
  * TaskSubscription works with an AgentScheduler to make it easier to monitor a specific task ownership.
21
- *
22
- * @public
20
+ * @internal
23
21
  */
24
22
  export class TaskSubscription extends TypedEventEmitter<ITaskSubscriptionEvents> {
25
23
  private subscribed: boolean = false;