Skip to content

Commit

Permalink
Fix #53 readme links to constructor properties are broken
Browse files Browse the repository at this point in the history
  • Loading branch information
regevbr committed Oct 24, 2019
1 parent c1a2a3e commit 5361ab9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -74,11 +74,11 @@ npm install squiss-ts

## How it works
Squiss processes as many messages simultaneously as possible.
Set the [maxInFlight](#squiss-class-constructor-options-polling-options-maxinflight) option to the number of messages your app can handle at one time without choking, and Squiss will keep
Set the [maxInFlight](https://squiss-ts.pruvo.com/#squiss-class-constructor-options-polling-options-maxinflight) option to the number of messages your app can handle at one time without choking, and Squiss will keep
that many messages flowing through your app, grabbing more as you mark each message as handled or ready for deletion.
If the queue is empty, Squiss will maintain an open connection to SQS, waiting for any messages that appear in real time.
Squiss can also handle renewing the visibility timeout for your messages until you handle the message, or message handling time
(set up by you) has passed (see [autoExtendTimeout](#squiss-class-constructor-options-auto-extend-options-autoextendtimeout)).
(set up by you) has passed (see [autoExtendTimeout](https://squiss-ts.pruvo.com/#squiss-class-constructor-options-auto-extend-options-autoextendtimeout)).
Bonus: Squiss will also automatically handle the message attributes formatting and parsing when receiving and sending messages.

## Versions
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -12,7 +12,7 @@
"build": "npm run lint && npm run buildDist",
"buildDist": "rm -rf dist/* && ./node_modules/.bin/tsc",
"test": "npm run lint && npm run mocha",
"mocha": "mocha --opts src/test/mocha.opts",
"mocha": "node --preserve-symlinks -r source-map-support/register node_modules/mocha/bin/_mocha --opts src/test/mocha.opts",
"cover": "nyc --reporter=lcov --reporter=text-summary npm run test",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'"
},
Expand Down

0 comments on commit 5361ab9

Please sign in to comment.