Provides methods to consume messages from Google PubSub using Futures and Hyper.
Authentication is provided by rust-goauth.
The BaseClient
expects to receive the path to the file containing your Google Cloud
service account JSON key.
The JWT token has a short life time and needs to be renewed periodically for long lived processes.
There is a provided helper which will renew the token every 15 mins
:
``` let pubsub = match BaseClient::create(config.googleapplicationcredentials) { Err(e) => panic!("Failed to initialize pubsub: {}", e), Ok(p) => p, };
tokio::run(lazy(move || { pubsub.spawntokenrenew(); })) ```
Envy is an excellent way to load your config.
```
struct Config { pubsubsubscription: String, googleapplication_credentials: String, }
fn main() {
let parsedenv = envy::fromenv::
let pubsub = match BaseClient::create(config.google_application_credentials) {
Err(e) => panic!("Failed to initialize pubsub: {}", e),
Ok(p) => p,
};
} ```
In order to produce log output, executables have to use a logger implementation compatible with the log facade. There are many available implementations to chose from, for example:
env_logger is an excellent way to log in your executables.
[dependencies]
log = "0.4"
env_logger = "0.7"
``` fn main() { env_logger::init();
info!("starting up");
// ...
} ```
let sub = my_client.subscribe("subscription-name")
When subscribing to a topic, a random subscription name will be generated. To prevent dangling
subscriptions, you need to explicitly call subscription.destroy()
.