addTask
codebolt.taskplaner.addTask(task: string): Promise<AddTaskResponse>
Adds a task to the system via WebSocket.
Parameters
Name | Type | Description |
---|---|---|
task | string | The task to be added. |
Returns:
Promise<AddTaskResponse>
A promise that resolves with the response from the add task event.Example
import codebolt from '@codebolt/codeboltjs';
async function exampleAddTask() {
try {
const response = await codebolt.taskplaner.addTask("Complete project documentation");
console.log("Task added successfully:", response);
} catch (error) {
console.error("Failed to add task:", error);
}
}
exampleAddTask();
Explaination
The codebolt.taskplaner.addTask function takes a single parameter, task, which is a string representing the task you want to add. This function sends the task to the task planner system using a WebSocket message.
task (string): The description of the task to be added.