Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tchap committed Aug 23, 2013
1 parent e3a84ee commit 7b3b228
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

[![Build Status](https://travis-ci.org/tchap/go-statemachine.png?branch=master)](https://travis-ci.org/tchap/go-statemachine)

A small framework for using state machine approach for event processing.
Transform your Go structs into tiny state machines.

## About

In Go you quite often need to make your struct methods thread-safe and also allow only particular sequences of calls, e.g. when `Close` is called, no other method can be called ever again. And this is exactly what go-statemachine is handling for your. If does not use any mutexes, just channels. I might not be as fast as mutexes, but it's nice and robust.

## State of the Project

Expand Down

0 comments on commit 7b3b228

Please sign in to comment.