Skip to content

Instantly share code, notes, and snippets.

@chaliy
Created January 15, 2010 23:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chaliy/278514 to your computer and use it in GitHub Desktop.
Save chaliy/278514 to your computer and use it in GitHub Desktop.
namespace Processing.Services2
type BatchItem = {
Arguments : (string * string) list;
}
type Batch = {
Id : string;
ProcessorKey : string;
Items : BatchItem list;
}
module BatchQueue =
let Queue(b:Batch) =
printfn "Queued!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment