Skip to content

Commit

Permalink
Auto-reg ports
Browse files Browse the repository at this point in the history
  • Loading branch information
dagardner-nv committed Apr 15, 2024
1 parent c29716a commit 5d32a88
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions python/mrc/_pymrc/include/pymrc/asyncio_runnable.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ template <typename T>
class AsyncSink : public mrc::node::WritableProvider<T>,
public mrc::node::ReadableAcceptor<T>,
public mrc::node::SinkChannelOwner<T>,
public pymrc::AutoRegSinkAdapter<T>
public pymrc::AutoRegSinkAdapter<T>,
public pymrc::AutoRegEgressPort<T>
{
protected:
AsyncSink() :
Expand Down Expand Up @@ -144,7 +145,8 @@ template <typename T>
class AsyncSource : public mrc::node::WritableAcceptor<T>,
public mrc::node::ReadableProvider<T>,
public mrc::node::SourceChannelOwner<T>,
public pymrc::AutoRegSourceAdapter<T>
public pymrc::AutoRegSourceAdapter<T>,
public pymrc::AutoRegIngressPort<T>
{
protected:
AsyncSource() :
Expand Down

0 comments on commit 5d32a88

Please sign in to comment.