idealvin/coost

关于co::Chan

Closed this issue · 1 comments

lossv commented

关于co::Chan 为什么不支持 例如

void func2()
{
    co::Chan<int> ch(1, 10);
    ch << 1;
    ch << 2;

    COUT << "RESULT";
    wg.done();
}

我想实现 ch << 2;等待超时直接退出函数 而不是超时之后继续执行后续的函数 channel 为啥不支持这种特性呢?

lossv commented

知道方法了