Browse Source

add producer.

master
yangxiaodong 7 years ago
parent
commit
d2c77c07f5
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      src/Cap.Consistency/Producer/IProducerClient.cs

+ 2
- 3
src/Cap.Consistency/Producer/IProducerClient.cs View File

@@ -1,13 +1,12 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using System.Threading.Tasks;


namespace Cap.Consistency.Producer namespace Cap.Consistency.Producer
{ {
public interface IProducerClient public interface IProducerClient
{ {



Task SendAsync(string topic, string content);
} }
} }

Loading…
Cancel
Save