Skip to content

Commit

Permalink
docs: update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
weyoss committed Dec 11, 2023
1 parent 20fd6e5 commit 85d6adb
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>[RedisSMQ](../README.md) / Docs
[RedisSMQ](../README.md) / Docs

# RedisSMQ Docs

Expand Down
6 changes: 3 additions & 3 deletions docs/api/classes/MessageEnvelope.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,11 @@ ___

### getPriority

**getPriority**(): ``null`` \| `number`
**getPriority**(): ``null`` \| [`EMessagePriority`](../enums/EMessagePriority.md)

#### Returns

``null`` \| `number`
``null`` \| [`EMessagePriority`](../enums/EMessagePriority.md)

___

Expand Down Expand Up @@ -510,7 +510,7 @@ ___

| Name | Type |
| :------ | :------ |
| `priority` | `number` |
| `priority` | [`EMessagePriority`](../enums/EMessagePriority.md) |

#### Returns

Expand Down
2 changes: 1 addition & 1 deletion docs/consuming-messages.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>[RedisSMQ](../README.md) / [Docs](README.md) / Consuming Messages
[RedisSMQ](../README.md) / [Docs](README.md) / Consuming Messages

# Consuming Messages

Expand Down
2 changes: 1 addition & 1 deletion docs/message-exchanges.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>[RedisSMQ](../README.md) / [Docs](README.md) / Message Exchanges
[RedisSMQ](../README.md) / [Docs](README.md) / Message Exchanges

# Message Exchanges

Expand Down
4 changes: 2 additions & 2 deletions docs/messages.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>[RedisSMQ](../README.md) / [Docs](README.md) / Messages
[RedisSMQ](../README.md) / [Docs](README.md) / Messages

# Messages

Expand All @@ -17,4 +17,4 @@ msg.setBody({hello: 'world'})

The `MessageEnvelope` class provides many methods for setting up different delivery/consumption parameters such as message priority, message TTL, retry threshold, etc.

See [MessageEnvelope Class](api/classes/MessageEnvelope.md) for more details.
See [Message Class](api/classes/Message.md) and [MessageEnvelope Class](api/classes/MessageEnvelope.md) for more details.
4 changes: 2 additions & 2 deletions docs/multiplexing.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>[RedisSMQ](../README.md) / [Docs](README.md) / Multiplexing
[RedisSMQ](../README.md) / [Docs](README.md) / Multiplexing

# Multiplexing

Expand All @@ -20,7 +20,7 @@ So, before deciding whether to use multiplexing, it is important to know what yo

## Enabling multiplexing

Use the [Consumer class constructor](api/classes/Consumer.md#constructors) first argument to enable multiplexing:
Use the [Consumer class constructor](api/classes/Consumer.md#constructor) first argument to enable multiplexing:

```javascript
const consumer = new Consumer(true);
Expand Down
2 changes: 1 addition & 1 deletion docs/performance.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>[RedisSMQ](../README.md) / [Docs](README.md) / Performance
[RedisSMQ](../README.md) / [Docs](README.md) / Performance


# Performance
Expand Down
2 changes: 1 addition & 1 deletion docs/producing-messages.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>[RedisSMQ](../README.md) / [Docs](README.md) / Producing Messages
[RedisSMQ](../README.md) / [Docs](README.md) / Producing Messages

# Producing Messages

Expand Down
2 changes: 1 addition & 1 deletion docs/queue-rate-limiting.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>[RedisSMQ](../README.md) / [Docs](README.md) / Queue Rate limiting
[RedisSMQ](../README.md) / [Docs](README.md) / Queue Rate limiting

# Queue Rate limiting

Expand Down
2 changes: 1 addition & 1 deletion docs/queues.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>[RedisSMQ](../README.md) / [Docs](README.md) / Queues
[RedisSMQ](../README.md) / [Docs](README.md) / Queues

# Queues

Expand Down
2 changes: 1 addition & 1 deletion docs/redis-smq-architecture.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>[RedisSMQ](../README.md) / [Docs](README.md) / RedisSMQ Architecture Overview
[RedisSMQ](../README.md) / [Docs](README.md) / RedisSMQ Architecture Overview

# RedisSMQ Architecture Overview

Expand Down
2 changes: 1 addition & 1 deletion docs/scheduling-messages.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>[RedisSMQ](../README.md) / [Docs](README.md) / Scheduling Messages
[RedisSMQ](../README.md) / [Docs](README.md) / Scheduling Messages

# Scheduling Messages

Expand Down

0 comments on commit 85d6adb

Please sign in to comment.