Skip to content

RapidMQ is a pure, extremely productive, lightweight and reliable library for managing of the local messages queue

License

Notifications You must be signed in to change notification settings

sybrexsys/RapidMQ

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

28 Commits

Repository files navigation

Go Report CardBuild StatusCoverage StatusGoDoc

RapidMQ

RapidMQ is a pure, extremely productive, lightweight and reliable library for managing of the local messages queue in the Go programming language.

Installation

go get github.com/sybrexsys/RapidMQ/queue 

Requirements

  • Need at least go1.4 or newer.

Usage

Queue

Base structure in the base is Queue Queue is created with that function:

func CreateQueue(Name, StoragePath string, Log Logging, Factory WorkerFactory, Options *Options) (*Queue, error) 
ParametersTypeDescription
NamestringQueue name. Used for logging only
StoragePathstringPath to the disk storages' files
LogLoggingInterface is used to logging of the queue's events. If equal to nil, logging is ensent. Description bellow
FactoryWorkerFactoryInterface for abstract factory of the workers. Description bellow
Options*OptionsOptions of the queue
func (q *Queue) Insert(buf []byte) bool 

Appends the message into the queue. In depends of the timeout's option either is trying to write message to the disk or is trying to process this message in the memory and writing to the disk only if timeout is expired shortly. Returns false if aren't processing / writing of the message in the during of the timeout or has some problems with writing to disk

func (q *Queue) Process(worker WorkerID, isOk bool) 

That function must be called from the worker of the message. In depends of the isOk parameter either messages are deleting from the queue or are marking as faulty and again processing after some timeout

func (q *Queue) Count() uint64 

Returns the count of the messages in the queue

func (q *Queue) Close() 

Stops the handler of the messages, saves the messages located in the memory into the disk, closes all opened files.

Message

Description of the structure that will be sent to worker

type Message struct{ID StorageIdx Buffer []byte } 
MemberTypeDescription
IDStorageIdxID of the message
Buffer[]byteBuffer with content of the message

WorkerFactory

Worker factory is a structure that create workers for processing messages Your factory must support next interface:

type WorkerFactory interface{CreateWorker() Worker NeedTimeoutProcessing() bool } 
CreateWorker() Worker 

Creates new worker for this factory with unique ID

NeedTimeoutProcessing() bool 

Returns true if possible used some messages in one action (for example, collect large SQL script from lot of the small messages)

Worker

If you are using of your worker, he must support next interface

type Worker interface{ProcessMessage(*Queue, *Message, chan Worker) ProcessTimeout(*Queue, chan Worker) GetID() WorkerID Close() } 
ProcessMessage(*Queue, *Message, chan Worker) 

Processes message that is stored in *Message. After it the worker must call function (*Queue).Process with his unique identifier and with result of the processing, also must be pushed himself into chanal Worker

ProcessTimeout(*Queue, chan Worker) 

Processing of the event when available messages is absent
After it the worker must call function (*Queue).Process with his unique identifier and with result of the processing, also must send himself into chanal Worker

GetID() WorkerID 

Returns unique identifier of the worker

Close() 

Close is called when queue is finishing work with worker. Here you can close connection to database or etc.

Logging

If you are using of your logging system, it must support next interface

type Logging interface{Trace(msg string, a ...interface{}) Info(msg string, a ...interface{}) Warning(msg string, a ...interface{}) Error(msg string, a ...interface{}) } 

Author

Vadim Shakun:[email protected]

License

RapidMQ is under the Apache 2.0 license. See the LICENSE file for details.

About

RapidMQ is a pure, extremely productive, lightweight and reliable library for managing of the local messages queue

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages