Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c7c7dd8

Browse files
committed
Fix AggregateEventHandler inheritance visibility
1 parent a6d0408 commit c7c7dd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Disruptor/AggregateEventHandler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace Disruptor
1515
/// </summary>
1616
/// <typeparam name="T">event implementation storing the data for sharing during exchange or parallel coordination of an event</typeparam>
1717
template <class T>
18-
class AggregateEventHandler : IEventHandler< T >, ILifecycleAware
18+
class AggregateEventHandler : public IEventHandler< T >, public ILifecycleAware
1919
{
2020
public:
2121
/// <summary>

0 commit comments

Comments
 (0)