Skip to content

Commit

Permalink
New subscription manager (#1071)
Browse files Browse the repository at this point in the history
Fix #886
  • Loading branch information
cindyyan317 committed Jan 8, 2024
1 parent 07bd4b0 commit eb1831c
Show file tree
Hide file tree
Showing 37 changed files with 4,344 additions and 2,015 deletions.
17 changes: 14 additions & 3 deletions CMakeLists.txt
Expand Up @@ -105,6 +105,10 @@ target_sources (clio PRIVATE
src/etl/impl/ForwardCache.cpp
## Feed
src/feed/SubscriptionManager.cpp
src/feed/impl/TransactionFeed.cpp
src/feed/impl/LedgerFeed.cpp
src/feed/impl/ProposedTransactionFeed.cpp
src/feed/impl/SingleFeedBase.cpp
## Web
src/web/impl/AdminVerificationStrategy.cpp
src/web/IntervalSweepHandler.cpp
Expand Down Expand Up @@ -181,8 +185,6 @@ if (tests)
unittests/ProfilerTests.cpp
unittests/JsonUtilTests.cpp
unittests/DOSGuardTests.cpp
unittests/SubscriptionTests.cpp
unittests/SubscriptionManagerTests.cpp
unittests/util/AssertTests.cpp
unittests/util/BatchingTests.cpp
unittests/util/TestObject.cpp
Expand Down Expand Up @@ -260,7 +262,16 @@ if (tests)
unittests/web/ServerTests.cpp
unittests/web/RPCServerHandlerTests.cpp
unittests/web/WhitelistHandlerTests.cpp
unittests/web/SweepHandlerTests.cpp)
unittests/web/SweepHandlerTests.cpp
# Feed
unittests/feed/SubscriptionManagerTests.cpp
unittests/feed/SingleFeedBaseTests.cpp
unittests/feed/ProposedTransactionFeedTests.cpp
unittests/feed/BookChangesFeedTests.cpp
unittests/feed/LedgerFeedTests.cpp
unittests/feed/TransactionFeedTests.cpp
unittests/feed/ForwardFeedTests.cpp
unittests/feed/TrackableSignalTests.cpp)

include (CMake/deps/gtest.cmake)

Expand Down

0 comments on commit eb1831c

Please sign in to comment.