| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
This directory contains an idiomatic C++ client library for the Eventarc API, a service to asynchronously deliver events.
While this library is GA, please note that the Google Cloud C++ client libraries do not follow Semantic Versioning.
The quickstart/ directory contains a minimal environment to get started using this client library in a larger project. The following "Hello World" program is used in this quickstart, and should give you a taste of this library.
#include "google/cloud/eventarc/eventarc_client.h"
#include "google/cloud/project.h"
#include <iostream>
#include <stdexcept>
int main(int argc, char* argv[]) try {
if (argc != 3) {
std::cerr << "Usage: " << argv[0] << " project-id location-id\n";
return 1;
}
namespace eventarc = ::google::cloud::eventarc;
auto client = eventarc::EventarcClient(eventarc::MakeEventarcConnection());
auto const project = google::cloud::Project(argv[1]);
auto const parent = project.FullName() + "/locations/" + argv[2];
for (auto t : client.ListTriggers(parent)) {
if (!t) throw std::runtime_error(t.status().message());
std::cout << t->DebugString() << "\n";
}
return 0;
} catch (std::exception const& ex) {
std::cerr << "Standard exception raised: " << ex.what() << "\n";
return 1;
}See CONTRIBUTING.md for details on how to contribute to this project, including how to build and test your changes as well as how to properly format your code.
Apache 2.0; see LICENSE for details.
| Back | FazBrowse Home | New Git URL |