Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 wcf 服务。我想在每个时间间隔使用此服务向我的所有客户广播数据包。我使用了回调,但它是一个不同的概念。请让我知道我该怎么做。
提前致谢。
回调合约将允许您向 Web 服务客户端发送推送。我不确定您所说的“不同的概念”是什么意思。
以我的经验,虽然它有效,但 WCF 中的回调合同充其量是复杂的。我将转向支持异步排队的绑定(如 netMsmqBinding)。
这将允许您存储有关服务客户端的服务信息,并在必要时将数据推送给它们。