Skip to content

Repository files navigation

Juno Rust

This is a library that provides you with helper methods for interfacing with the microservices framework, juno.

How to use:

There is a lot of flexibility provided by the library, in terms of connection options and encoding protocol options. However, in order to use the library, none of that is required.

In case you are planning to implement a custom connection option, you will find an example in src/connection/unix_socket_connection.rs.

For all other basic needs, you can get away without worrying about any of that.

A piece of code is worth a thousand words

use async_std::task;use juno::{models::Value,JunoModule};use std::{time::Duration, collections::HashMap};#[async_std::main]asyncfnmain(){letmut module = JunoModule::default("./path/to/juno.sock");// The hashmap below is used to mark dependencies
module
.initialize("module-name","1.0.0",HashMap::new()).await.unwrap();println!("Initialized!");
module
.declare_function("print_hello", |args| {println!("Hello");Value::Null}).await.unwrap();// The HashMap::new() below marks the arguments passed to the function
module
.call_function("module2.print_hello_world",HashMap::new()).await.unwrap();loop{
task::sleep(Duration::from_millis(1000)).await;}}

About

Rust library for interfacing with project juno

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages