Skip to content

Instantly share code, notes, and snippets.

@dbarkol
Created May 17, 2019 06:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbarkol/8fce9a1ffeffe4800ad22e0cc424c2a6 to your computer and use it in GitHub Desktop.
Save dbarkol/8fce9a1ffeffe4800ad22e0cc424c2a6 to your computer and use it in GitHub Desktop.
using System.Threading.Tasks;
namespace Zohan.KafkaDemo
{
public interface IKafkaProducer
{
Task SendEvent(string topicName, string key, string value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment