Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@fluidframework/agent-scheduler
Advanced tools
Built in runtime object for distributing agents across instances of a container
When taking a dependency on a Fluid Framework library, we recommend using a ^
(caret) version range, such as ^1.3.4
.
While Fluid Framework libraries may use different ranges with interdependencies between other Fluid Framework libraries,
library consumers should always prefer ^
.
The AgentScheduler
is a data object that can be used to assign tasks to unique clients.
To create an AgentScheduler
as a child instance of your data object, add the factory to your registry and call the static createChildInstance
function on the factory. You can then retrieve and store its handle to access it later:
// In your Data Object
protected async initializingFirstTime() {
const agentScheduler = await AgentSchedulerFactory.createChildInstance(this.context);
this.root.set("agentScheduler", agentScheduler.handle);
}
// When creating your DataObjectFactory
export const MyDataObjectFactory = new DataObjectFactory(
"my-data-object",
MyDataObject,
[],
{},
new Map([
AgentSchedulerFactory.registryEntry,
]),
);
This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
Use of these trademarks or logos must follow Microsoft's Trademark & Brand Guidelines.
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
FAQs
Built in runtime object for distributing agents across instances of a container
The npm package @fluidframework/agent-scheduler receives a total of 2,052 weekly downloads. As such, @fluidframework/agent-scheduler popularity was classified as popular.
We found that @fluidframework/agent-scheduler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.