Add skeleton hint router

The hint router will perform its scheduling solely based upon hints
provided by a filter (e.g. namedserverfilter) placed before it.
This commit is contained in:
Johan Wikman
2017-03-03 15:35:37 +02:00
parent 7f9fdd0f3d
commit 4cd9309b30
6 changed files with 213 additions and 0 deletions

View File

@ -0,0 +1,8 @@
add_library(hintrouter SHARED
hintrouter.cc
hintroutersession.cc
)
target_link_libraries(hintrouter maxscale-common)
set_target_properties(hintrouter PROPERTIES VERSION "1.0.0")
install_module(hintrouter core)