Skip to content

Commit

Permalink
Adds release information
Browse files Browse the repository at this point in the history
  • Loading branch information
nolantait committed Mar 12, 2022
1 parent e638231 commit 829a020
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Disruptor.cr

[![GitHub release](https://img.shields.io/github/release/nolantait/disruptor.cr.svg)](https://github.com/nolantait/disruptor.cr/releases)

An ongoing attempt at implementing the
[Disruptor pattern](https://martinfowler.com/articles/lmax.html)
for algotrading (and other things) with crystal.
Expand Down
1 change: 1 addition & 0 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: disruptor
version: 0.1.0
description: An implementation of the LMAX disruptor pattern in Crystal

authors:
- Nolan J Tait <nolanjtait@gmail.com>
Expand Down
1 change: 1 addition & 0 deletions src/disruptor.cr
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module Disruptor
VERSION = "0.1.0"

class BufferSizeError < Exception; end

alias Slot = Int8 | Int16 | Int32
alias WaitStrategy = WaitWithSpin | WaitWithYield | WaitWithReturn
end

0 comments on commit 829a020

Please sign in to comment.