ProductPromotion
Logo

Go.Lang

made by https://0x3d.site

GitHub - sybrexsys/RapidMQ: RapidMQ is a pure, extremely productive, lightweight and reliable library for managing of the local messages queue
RapidMQ is a pure, extremely productive, lightweight and reliable library for managing of the local messages queue - sybrexsys/RapidMQ
Visit Site

GitHub - sybrexsys/RapidMQ: RapidMQ is a pure, extremely productive, lightweight and reliable library for managing of the local messages queue

GitHub - sybrexsys/RapidMQ: RapidMQ is a pure, extremely productive, lightweight and reliable library for managing of the local messages queue

Go Report Card Build Status Coverage Status GoDoc

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)
Parameters Type Description
Name string Queue name. Used for logging only
StoragePath string Path to the disk storages' files
Log Logging Interface is used to logging of the queue's events. If equal to nil, logging is ensent. Description bellow
Factory WorkerFactory Interface for abstract factory of the workers. Description bellow
Options *Options Options 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
}
Member Type Description
ID StorageIdx ID of the message
Buffer []byte Buffer 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.

Articles
to learn more about the golang concepts.

Resources
which are currently available to browse on.

mail [email protected] to add your project or resources here ๐Ÿ”ฅ.

FAQ's
to know more about the topic.

mail [email protected] to add your project or resources here ๐Ÿ”ฅ.

Queries
or most google FAQ's about GoLang.

mail [email protected] to add more queries here ๐Ÿ”.

More Sites
to check out once you're finished browsing here.

0x3d
https://www.0x3d.site/
0x3d is designed for aggregating information.
NodeJS
https://nodejs.0x3d.site/
NodeJS Online Directory
Cross Platform
https://cross-platform.0x3d.site/
Cross Platform Online Directory
Open Source
https://open-source.0x3d.site/
Open Source Online Directory
Analytics
https://analytics.0x3d.site/
Analytics Online Directory
JavaScript
https://javascript.0x3d.site/
JavaScript Online Directory
GoLang
https://golang.0x3d.site/
GoLang Online Directory
Python
https://python.0x3d.site/
Python Online Directory
Swift
https://swift.0x3d.site/
Swift Online Directory
Rust
https://rust.0x3d.site/
Rust Online Directory
Scala
https://scala.0x3d.site/
Scala Online Directory
Ruby
https://ruby.0x3d.site/
Ruby Online Directory
Clojure
https://clojure.0x3d.site/
Clojure Online Directory
Elixir
https://elixir.0x3d.site/
Elixir Online Directory
Elm
https://elm.0x3d.site/
Elm Online Directory
Lua
https://lua.0x3d.site/
Lua Online Directory
C Programming
https://c-programming.0x3d.site/
C Programming Online Directory
C++ Programming
https://cpp-programming.0x3d.site/
C++ Programming Online Directory
R Programming
https://r-programming.0x3d.site/
R Programming Online Directory
Perl
https://perl.0x3d.site/
Perl Online Directory
Java
https://java.0x3d.site/
Java Online Directory
Kotlin
https://kotlin.0x3d.site/
Kotlin Online Directory
PHP
https://php.0x3d.site/
PHP Online Directory
React JS
https://react.0x3d.site/
React JS Online Directory
Angular
https://angular.0x3d.site/
Angular JS Online Directory