{"id":20898958,"url":"https://github.com/tsavola/lock","last_synced_at":"2025-12-25T09:18:52.436Z","repository":{"id":57641361,"uuid":"435254120","full_name":"tsavola/lock","owner":"tsavola","description":"Go mutex helpers","archived":false,"fork":false,"pushed_at":"2024-10-06T00:04:26.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-11T02:09:34.980Z","etag":null,"topics":["go","synchronization"],"latest_commit_sha":null,"homepage":"https://import.name/lock","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tsavola.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-12-05T19:04:02.000Z","updated_at":"2024-10-06T00:02:56.000Z","dependencies_parsed_at":"2024-11-19T04:04:54.936Z","dependency_job_id":null,"html_url":"https://github.com/tsavola/lock","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsavola%2Flock","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsavola%2Flock/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsavola%2Flock/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsavola%2Flock/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tsavola","download_url":"https://codeload.github.com/tsavola/lock/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243285625,"owners_count":20266849,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","synchronization"],"created_at":"2024-11-18T11:12:46.397Z","updated_at":"2025-12-25T09:18:47.385Z","avatar_url":"https://github.com/tsavola.png","language":"Go","readme":"### Example\n\n```go\nimport \"import.name/lock\"\nimport \"import.name/lock/unlock\"\n\nfunc ExampleLock() {\n\tvar (\n\t\tmu    sync.Mutex\n\t\tcount int\n\t)\n\n\tlock.Guard(\u0026mu, func() {\n\t\tcount++\n\t})\n\n\tn := lock.Guarded(\u0026mu, func() int {\n\t\treturn count\n\t})\n\tfmt.Println(n)\n}\n\nfunc ExampleUnlock() {\n\tvar mu sync.Mutex\n\n\tmu.Lock()\n\tdefer mu.Unlock()\n\n\tunlock.Guard(\u0026mu, func() {\n\t\ttime.Sleep(time.Second)\n\t})\n}\n\nfunc ExampleTagLock() {\n\ttype countLocked struct{}\n\n\tvar (\n\t\tmu    lock.TagMutex[countLocked]\n\t\tcount int\n\t)\n\n\tincrementWithLock := func(l countLocked) {\n\t\tcount++\n\t}\n\n\treadWithLock := func(l countLocked) int {\n\t\treturn count\n\t}\n\n\tlock.GuardTag(\u0026mu, func(l countLocked) {\n\t\tincrementWithLock(l)\n\t})\n\n\tn := lock.GuardTagged(\u0026mu, func(l countLocked) int {\n\t\treturn readWithLock(l)\n\t})\n\tfmt.Println(n)\n}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsavola%2Flock","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftsavola%2Flock","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsavola%2Flock/lists"}