mirror of
				https://github.com/Telecominfraproject/wlan-cloud-lib-cppkafka.git
				synced 2025-11-04 04:27:48 +00:00 
			
		
		
		
	Move compacted topic processor into utils directory
This commit is contained in:
		@@ -1,6 +1,12 @@
 | 
				
			|||||||
file(GLOB INCLUDE_FILES "*.h")
 | 
					file(GLOB INCLUDE_FILES "*.h")
 | 
				
			||||||
 | 
					file(GLOB UTILS_INCLUDE_FILES "utils/*.h")
 | 
				
			||||||
install(
 | 
					install(
 | 
				
			||||||
    FILES ${INCLUDE_FILES}
 | 
					    FILES ${INCLUDE_FILES}
 | 
				
			||||||
    DESTINATION include/cppkafka
 | 
					    DESTINATION include/cppkafka
 | 
				
			||||||
    COMPONENT Headers
 | 
					    COMPONENT Headers
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					install(
 | 
				
			||||||
 | 
					    FILES ${UTILS_INCLUDE_FILES}
 | 
				
			||||||
 | 
					    DESTINATION include/cppkafka/utils/
 | 
				
			||||||
 | 
					    COMPONENT Headers
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
@@ -39,7 +39,7 @@
 | 
				
			|||||||
#include "consumer.h"
 | 
					#include "consumer.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace cppkafka {
 | 
					namespace cppkafka {
 | 
				
			||||||
 | 
					namespace utils {
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * \brief Events generated by a CompactedTopicProcessor
 | 
					 * \brief Events generated by a CompactedTopicProcessor
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
@@ -341,6 +341,7 @@ void CompactedTopicProcessor<K, V>::on_assignment(TopicPartitionList& topic_part
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					} // utils
 | 
				
			||||||
} // cppkafka
 | 
					} // cppkafka
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif // CPPKAFKA_COMPACTED_TOPIC_PROCESSOR_H
 | 
					#endif // CPPKAFKA_COMPACTED_TOPIC_PROCESSOR_H
 | 
				
			||||||
		Reference in New Issue
	
	Block a user