本文整理汇总了C++中Universe::AddSinkClient方法的典型用法代码示例。如果您正苦于以下问题:C++ Universe::AddSinkClient方法的具体用法?C++ Universe::AddSinkClient怎么用?C++ Universe::AddSinkClient使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Universe
的用法示例。
在下文中一共展示了Universe::AddSinkClient方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: RegisterForDmx
/*
* Register a client to receive DMX data.
*/
void OlaServerServiceImpl::RegisterForDmx(
RpcController* controller,
const RegisterDmxRequest* request,
Ack*,
ola::rpc::RpcService::CompletionCallback* done,
Client *client) {
ClosureRunner runner(done);
Universe *universe = m_universe_store->GetUniverseOrCreate(
request->universe());
if (!universe)
return MissingUniverseError(controller);
if (request->action() == ola::proto::REGISTER) {
universe->AddSinkClient(client);
} else {
universe->RemoveSinkClient(client);
}
}
示例2: testSinkClients
/*
* Check that we can add/remove sink clients from this universes
*/
void UniverseTest::testSinkClients() {
Universe *universe = m_store->GetUniverseOrCreate(TEST_UNIVERSE);
OLA_ASSERT(universe);
OLA_ASSERT_EQ((unsigned int) 0, universe->SourceClientCount());
OLA_ASSERT_EQ((unsigned int) 0, universe->SinkClientCount());
// test that we can add a source client
MockClient client;
universe->AddSinkClient(&client);
OLA_ASSERT_EQ((unsigned int) 1, universe->SinkClientCount());
OLA_ASSERT_EQ((unsigned int) 0, universe->SourceClientCount());
OLA_ASSERT(universe->ContainsSinkClient(&client));
OLA_ASSERT_FALSE(universe->ContainsSourceClient(&client));
OLA_ASSERT(universe->IsActive());
// Setting DMX now should update the client
OLA_ASSERT_FALSE(client.m_dmx_set);
universe->SetDMX(m_buffer);
OLA_ASSERT(client.m_dmx_set);
// now remove it
universe->RemoveSinkClient(&client);
OLA_ASSERT_EQ((unsigned int) 0, universe->SinkClientCount());
OLA_ASSERT_EQ((unsigned int) 0, universe->SourceClientCount());
OLA_ASSERT_FALSE(universe->ContainsSinkClient(&client));
OLA_ASSERT_FALSE(universe->ContainsSourceClient(&client));
OLA_ASSERT_FALSE(universe->IsActive());
// try to remove it again
OLA_ASSERT_FALSE(universe->RemoveSinkClient(&client));
OLA_ASSERT_EQ((unsigned int) 0, universe->SinkClientCount());
OLA_ASSERT_EQ((unsigned int) 0, universe->SourceClientCount());
OLA_ASSERT_FALSE(universe->ContainsSinkClient(&client));
OLA_ASSERT_FALSE(universe->ContainsSourceClient(&client));
OLA_ASSERT_FALSE(universe->IsActive());
}