• Stars
    star
    141
  • Rank 250,835 (Top 6 %)
  • Language
    Go
  • License
    MIT License
  • Created about 7 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Job Scheduling Library

clockwerk

Build Status   Coverage Status   Go Report Card   GoDoc

Job Scheduling Library

clockwerk allows you to schedule periodic jobs using a simple, fluent syntax.

Usage

go get github.com/onatm/clockwerk
package main

import (
  "fmt"
  "time"
  "github.com/onatm/clockwerk"
)

type DummyJob struct{}

func (d DummyJob) Run() {
  fmt.Println("Every 30 seconds")
}

func main() {
  var job DummyJob
  c := clockwerk.New()
  c.Every(30 * time.Second).Do(job)
  c.Start()
}

More Repositories

1

kx

Interactively switch between kubernetes contexts without any external dependencies
Rust
40
star
2

ak2048

AK clone of 2048
JavaScript
25
star
3

kubectl-allctx

Run 'kubectl' commands on contexts in your kubeconfig
Shell
17
star
4

license-against-the-machine

Strictly no AIs
15
star
5

grpc-health-probe-rs

A utility to run health checks for gRPC services
Rust
13
star
6

Owin.Antiforgery

Owin Anti-forgery Middleware
C#
9
star
7

hackerman

An assembler for 16-bit Hack machine language written in Rust
Rust
8
star
8

right-pad

String right pad
JavaScript
7
star
9

Frigate

Multi-Producer-Single-Consumer queue for .Net
C#
6
star
10

open-in-new-window

VS Code explorer context menu extension to open any path in a new window
TypeScript
6
star
11

Thirst

Akka.net based service status checker
C#
3
star
12

twooter

Send tweets from mastodon.
TypeScript
3
star
13

croon

cron tab implementation in rust
Rust
3
star
14

dotfiles

my dotfiles
Shell
3
star
15

heimdall

Implicit OpenID Connect (OIDC) and OAuth 2.0 Provider with opinionated identity management
JavaScript
3
star
16

qemu_stm32

Docker container for QEMU with an STM32 microcontroller implementation
Dockerfile
2
star
17

gerigelhub

nginx proxy tunneling configuration for github
2
star
18

homelab

bare-metal cloud powered by Proxmox VE and Lenovo ThinkCentre
HCL
1
star
19

limovico

Lightweight HMVC framework for PHP
1
star
20

Wrekt.SteamApi.Client

Steam api client for trading with logging, quality of service and circuit breaking support.
C#
1
star
21

Owin.TurkishGovernment

Owin Middleware for Legal Reasons
C#
1
star
22

gelmiyoo

türkiye'nin aramama motoru
HTML
1
star
23

ronaco

Monaco Editor for React with typescript type definitions.
TypeScript
1
star
24

Android-ExtendedViewPager

Coolest ViewPager with Parallax Image, Video Background and Pager Indicator.
Java
1
star
25

ecowa-theme

bootstrap application landing theme
HTML
1
star