0
com/crossbario/autobahn-cpp:サーバーからのイベントを購読する。サーバーは私のものではなく、情報を収集するだけですが、フォーマットに問題があります。autobahn msgmapck複雑なタイプのC++を展開する
Iがこのイベントを有しており、このような複雑な場合の正しいタイプを把握することはできません。
RXメッセージ:イベント[2934398464921086、7994968764510011、 {}、[{ "タイプ": "イベント"、「データ":{" タイプ ":" オーダー」、 "重量": "1141.13200000"、 "値": "0.09000000"}}]、{ "ポイント":81632796}]
auto s1 = session->subscribe("topic",
[](const autobahn::wamp_event& event) {
for(int i = 0; i< event.number_of_arguments(); i++)
{
try {
typedef /*some type*/ ARGS;
ARGS arguments;
arguments = event.argument<ARGS>(i);
}
catch (const std::bad_cast& e) {
std::cerr << "Casting exception: " << e.what() << std::endl;
}
std::cout << "Got event: " << event.number_of_arguments() << std::endl;
}
})
.then([](boost::future<autobahn::wamp_subscription> sub) {
std::cout << "Subscribed with ID " << sub.get().id() << std::endl;
});
誰かが私を助けることができますか?