Skip to content

Simple task manager for assigning tasks and receiving tasks concurrently, implemented using actor model. RPC not implemented

Notifications You must be signed in to change notification settings

emeraldls/task-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task Management System

A simple task management system using the actor model in Go.

Overview

This project implements a basic task management system where tasks and users are represented as actors. The actor model is employed to simulate interactions between tasks and users through message passing.

Project Structure

The project follows the following structure:

task-manager/
|-- main.go
|-- model/
|   |-- actor.go
|   |-- message.go
|   |-- task.go
|   |-- user.go
|-- manager/
|   |-- task_manager.go
|   |-- user_manager.go

Features

  • User Registration: Register users with a unique username and role.
  • Task Management: Create tasks with a status, process ID (PID), and an associated message.
  • Task Assignment: Assign tasks from one user to another.

About

Simple task manager for assigning tasks and receiving tasks concurrently, implemented using actor model. RPC not implemented

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published