Skip to content

Instantly share code, notes, and snippets.

View vdeurzen's full-sized avatar

Tim van Deurzen vdeurzen

  • Eolas Engineering
  • Amsterdam
View GitHub Profile

Keybase proof

I hereby claim:

  • I am vdeurzen on github.
  • I am vdeurzen (https://keybase.io/vdeurzen) on keybase.
  • I have a public key ASAatbFjqd1_KYcbpx9yOPb04AjP8V7pZXGpJZX-eOMyoAo

To claim this, I am signing this object:

@vdeurzen
vdeurzen / main.cpp
Created October 10, 2018 16:00
stlab channels
#include <atomic>
#include <iostream>
#include <string>
#include <thread>
#include <stlab/concurrency/channel.hpp>
#include <stlab/concurrency/default_executor.hpp>
#include <stlab/concurrency/immediate_executor.hpp>
using namespace stlab;
from conans import ConanFile, CMake, tools
class CPPKafkaConan(ConanFile):
name = "cppkafka"
version = "0.1.6"
description = "A nice C++ wrapper around librdkafka"
license = "BSD-2"
settings = "os", "compiler", "build_type", "arch"
url = "https://github.com/mfontanini/cppkafka"
options = {"shared": [True, False]}