Esempio n. 1
0
        internal static SafeConfigHandle Create()
        {
            var ch = LibRdKafka.conf_new();

            if (ch.IsInvalid)
            {
                throw new Exception("Failed to create config");
            }
            return(ch);
        }