mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 17:41:45 +00:00
Implement parallel ofi::Socket::Receive
This commit is contained in:
committed by
Dennis Klein
parent
46e2420547
commit
8e7cfacd78
@@ -24,13 +24,12 @@ namespace ofi
|
||||
using namespace std;
|
||||
|
||||
TransportFactory::TransportFactory(const string& id, const FairMQProgOptions* /*config*/)
|
||||
try : FairMQTransportFactory{id}
|
||||
try : FairMQTransportFactory(id)
|
||||
, fContext(*this, 1)
|
||||
{
|
||||
LOG(debug) << "OFI transport: Using AZMQ & "
|
||||
<< "asiofi (" << fContext.GetAsiofiVersion() << ")";
|
||||
}
|
||||
catch (ContextError& e)
|
||||
{
|
||||
} catch (ContextError& e) {
|
||||
throw TransportFactoryError{e.what()};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user