Giter VIP home page Giter VIP logo

sharder's Introduction

serenity-sharder

Sharder is a library used to create a stream of asynchronously booted and operational Discord shards, especially executed by the tokio runtime. Sharder is backed by the serenity library.

Shards can be plugged into a pre-made adapter to be transported to a message broker of choice.

View the adapters repository for a list of available adapters.

Why?

The sharder is intended to essentially be a WebSocket proxy, separate from the remainder of the bot's infrastructure. In this sense, the rest of the bot's components can be restarted - either via hot-reloading or an entire restart of the processes - and will not affect uptime.

TODO: A writeup on this will be posted soon.

Examples

Start a bot by taking an environment variable containing the bot token, utilizing the autoshard strategy, delaying boots by 10 seconds, and then printing the ID of every shard spawned:

extern crate futures;
extern crate serenity_sharder;
extern crate tokio;

use futures::Stream;
use serenity_sharder::{self, SharderOptions, ShardingStrategy};
use std::{
    error::Error,
    env,
};

fn main() -> Result<(), Box<Error>> {
    let token = env::var("DISCORD_TOKEN")?;
    let mut options = SharderOptions::new(token);
    options.delay(10).strategy(ShardingStrategy::Autoshard);

    let future = serenity_sharder::spawn(options)?.for_each(|shard| {
        println!("Shard spawned! {:?}", shard.shard_info());

        Ok(())
    });

    tokio::run(future);

    Ok(())
}

sharder's People

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.