mirror of
https://github.com/Diggsey/sqlxmq.git
synced 2024-11-21 15:51:00 +00:00
Sync readme
This commit is contained in:
parent
e1cbd9f551
commit
1aff20c3e5
2 changed files with 51 additions and 5 deletions
20
.github/workflows/toolchain.yml
vendored
20
.github/workflows/toolchain.yml
vendored
|
@ -92,3 +92,23 @@ jobs:
|
||||||
with:
|
with:
|
||||||
command: test
|
command: test
|
||||||
args: -- --nocapture
|
args: -- --nocapture
|
||||||
|
|
||||||
|
readme:
|
||||||
|
name: Readme
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Install rust stable
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: stable
|
||||||
|
override: true
|
||||||
|
- name: Install cargo-sync-readme
|
||||||
|
uses: actions-rs/install@v0.1
|
||||||
|
with:
|
||||||
|
crate: cargo-sync-readme
|
||||||
|
version: latest
|
||||||
|
use-tool-cache: true
|
||||||
|
- name: Sync readme
|
||||||
|
run: cargo sync-readme -c
|
||||||
|
|
36
README.md
36
README.md
|
@ -1,9 +1,11 @@
|
||||||
# sqlxmq
|
|
||||||
|
|
||||||
[![CI Status](https://github.com/Diggsey/sqlxmq/workflows/CI/badge.svg)](https://github.com/Diggsey/sqlxmq/actions?query=workflow%3ACI)
|
[![CI Status](https://github.com/Diggsey/sqlxmq/workflows/CI/badge.svg)](https://github.com/Diggsey/sqlxmq/actions?query=workflow%3ACI)
|
||||||
[![Documentation](https://docs.rs/sqlxmq/badge.svg)](https://docs.rs/sqlxmq)
|
[![Documentation](https://docs.rs/sqlxmq/badge.svg)](https://docs.rs/sqlxmq)
|
||||||
[![crates.io](https://img.shields.io/crates/v/sqlxmq.svg)](https://crates.io/crates/sqlxmq)
|
[![crates.io](https://img.shields.io/crates/v/sqlxmq.svg)](https://crates.io/crates/sqlxmq)
|
||||||
|
|
||||||
|
<!-- cargo-sync-readme start -->
|
||||||
|
|
||||||
|
# sqlxmq
|
||||||
|
|
||||||
A job queue built on `sqlx` and `PostgreSQL`.
|
A job queue built on `sqlx` and `PostgreSQL`.
|
||||||
|
|
||||||
This library allows a CRUD application to run background jobs without complicating its
|
This library allows a CRUD application to run background jobs without complicating its
|
||||||
|
@ -122,6 +124,8 @@ to conflict with your own schema.
|
||||||
The first step is to define a function to be run on the job queue.
|
The first step is to define a function to be run on the job queue.
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
|
use std::error::Error;
|
||||||
|
|
||||||
use sqlxmq::{job, CurrentJob};
|
use sqlxmq::{job, CurrentJob};
|
||||||
|
|
||||||
// Arguments to the `#[job]` attribute allow setting default job options.
|
// Arguments to the `#[job]` attribute allow setting default job options.
|
||||||
|
@ -130,9 +134,9 @@ async fn example_job(
|
||||||
// The first argument should always be the current job.
|
// The first argument should always be the current job.
|
||||||
mut current_job: CurrentJob,
|
mut current_job: CurrentJob,
|
||||||
// Additional arguments are optional, but can be used to access context
|
// Additional arguments are optional, but can be used to access context
|
||||||
// provided via `JobRegistry::set_context`.
|
// provided via [`JobRegistry::set_context`].
|
||||||
message: &'static str,
|
message: &'static str,
|
||||||
) -> sqlx::Result<()> {
|
) -> Result<(), Box<dyn Error + Send + Sync + 'static>> {
|
||||||
// Decode a JSON payload
|
// Decode a JSON payload
|
||||||
let who: Option<String> = current_job.json()?;
|
let who: Option<String> = current_job.json()?;
|
||||||
|
|
||||||
|
@ -151,9 +155,12 @@ async fn example_job(
|
||||||
Next we need to create a job runner: this is what listens for new jobs
|
Next we need to create a job runner: this is what listens for new jobs
|
||||||
and executes them.
|
and executes them.
|
||||||
|
|
||||||
```rust
|
```rust,no_run
|
||||||
|
use std::error::Error;
|
||||||
|
|
||||||
use sqlxmq::JobRegistry;
|
use sqlxmq::JobRegistry;
|
||||||
|
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() -> Result<(), Box<dyn Error>> {
|
async fn main() -> Result<(), Box<dyn Error>> {
|
||||||
// You'll need to provide a Postgres connection pool.
|
// You'll need to provide a Postgres connection pool.
|
||||||
|
@ -179,6 +186,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
|
||||||
|
|
||||||
// The job runner will continue listening and running
|
// The job runner will continue listening and running
|
||||||
// jobs until `runner` is dropped.
|
// jobs until `runner` is dropped.
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -194,3 +202,21 @@ example_job.builder()
|
||||||
.spawn(&pool)
|
.spawn(&pool)
|
||||||
.await?;
|
.await?;
|
||||||
```
|
```
|
||||||
|
|
||||||
|
<!-- cargo-sync-readme end -->
|
||||||
|
|
||||||
|
## Note on README
|
||||||
|
|
||||||
|
Most of the readme is automatically copied from the crate documentation by [cargo-readme-sync][].
|
||||||
|
This way the readme is always in sync with the docs and examples are tested.
|
||||||
|
|
||||||
|
So if you find a part of the readme you'd like to change between `<!-- cargo-sync-readme start -->`
|
||||||
|
and `<!-- cargo-sync-readme end -->` markers, don't edit `README.md` directly, but rather change
|
||||||
|
the documentation on top of `src/lib.rs` and then synchronize the readme with:
|
||||||
|
```bash
|
||||||
|
cargo sync-readme
|
||||||
|
```
|
||||||
|
(make sure the cargo command is installed):
|
||||||
|
```bash
|
||||||
|
cargo install cargo-sync-readme
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue