我是 Microsoft事件中心的初学者。我使用节点js(refrence)成功将数据发送到template <typename T>
typename std::enable_if<std::is_rvalue_reference<T&&>::value, void>::type exp(T&& a, T&& b)
{
std::cout << "rvalues" << std::endl;
}
template <typename T>
typename std::enable_if<!std::is_rvalue_reference<T&>::value, void>::type exp(T& a, T& b)
{
std::cout << "lvalues" << std::endl;
}
。
如何从事件中心接收和显示数据?有什么想法吗?
答案 0 :(得分:3)
您无法使用Azure Event HubRESTAPÎ接收消息。您只能使用AMQP 1.0接收。
您最好的选择是寻找AMQP npm包。快速搜索也引导我:https://github.com/noodlefrenzy/node-amqp10
答案 1 :(得分:0)
您还可以使用用于Azure事件中心的官方JavaScript SDK @azure/event-hubs。