Working on gronos instead
It was a good experiment
Seigyo, deriving from the Japanese word for "Control" (制御), is a Go module meticulously crafted to orchestrate and manage the lifecycle of concurrent processes. It ensures smooth communication and control across various application workflows, providing a robust foundation for building reliable concurrent applications.
- Process Lifecycle Management: Define, initialize, run, and deinitialize processes with ease.
- Graceful Shutdown: Ensure smooth shutdowns and resource cleanup with integrated signal handling.
- Inter-Process Communication: Facilitate communication between different processes.
- Error Handling: Robust error handling and recovery mechanisms for processes.
- Configurable Retries: Customize retry logic for process initialization, running, and deinitialization.
- Go (version 1.18 or higher recommended)
Install Seigyo using go get
:
go get github.com/davidroman0O/seigyo
Here's a quick example to get you started with Seigyo:
package main
import (
"context"
"fmt"
"github.com/davidroman0O/seigyo"
)
type MyProcess struct{}
func (p *MyProcess) Init(ctx context.Context, stateGetter func() interface{}, stateMutator func(mutateFunc func(interface{}) interface{}), sender func(pid string, data interface{})) error {
fmt.Println("Process Initialized")
return nil
}
func (p *MyProcess) Run(ctx context.Context, stateGetter func() interface{}, stateMutator func(mutateFunc func(interface{}) interface{}), sender func(pid string, data interface{}), shutdownCh chan struct{}, errCh chan<- error) error {
fmt.Println("Process Running")
return nil
}
func (p *MyProcess) Deinit(ctx context.Context, stateGetter func() interface{}, stateMutator func(mutateFunc func(interface{}) interface{}), sender func(pid string, data interface{})) error {
fmt.Println("Process Deinitialized")
return nil
}
func (p *MyProcess) Received(pid string, data interface{}) error {
fmt.Printf("Received data from %s: %v\n", pid, data)
return nil
}
func main() {
controller := seigyo.New(nil)
process := &MyProcess{}
// Register and start your process here...
}
// Example code for basic process management...
// Example code for inter-process communication...
Detailed documentation can be found at GoDoc: Seigyo.
If you need some examples, you look at the Seigyo example repository.
We welcome contributions from the community! Please read our Contributing Guide for more details on how to contribute to Seigyo.
Seigyo is licensed under the MIT License.