mymmrac / routines

Blocking operations in non-blocking functions/loops without concurrency

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

♻️ Routines

Go Reference Go Version Go Report

Simple way to write blocking operations in non-blocking functions/loops without concurrency and with no dependencies.

go get -u github.com/mymmrac/routines@latest

🧩 Example

Simple hello world with "animated" loader.

Demo example

package main

import (
	"fmt"
	"time"

	"github.com/mymmrac/routines"
)

func main() {
	r := routines.StartRoutine()
	for !r.Completed() {
		r.Do(func() {
			fmt.Println("Hello Routines!")
			fmt.Print("Loading")
		})
		r.Repeat(3, func() {
			r.WaitFor(time.Second / 2)
			r.Do(func() {
				fmt.Print(".")
			})
		})
		r.Do(func() {
			fmt.Println()
			fmt.Println("Done!")
		})
		r.End()
	}
}

🌠 Features

Routines have two types of controls: actions and waiters. All controls work only after Start and until End.

Action Description
Start Start routine execution
End Finish routine execution
Do Perform an action
Func Call func with other actions inside
Loop Call actions in loop
Repeat Repeat actions N times
Waiter Description
WaitFor Wait for time to pass
WaitUntil Wait for condition to be true
WaitUntilOrTimeout Wait for condition to be true or time to pass
WaitForDone Wait for chan value to be received
WaitForDoneOrTimeout Wait for chan value to be received or time to pass

🔐 License

Distributed under MIT licence.

About

Blocking operations in non-blocking functions/loops without concurrency

License:MIT License


Languages

Language:Go 100.0%