├── .gitignore ├── .gitmodules ├── .scalastyle ├── LICENSE.md ├── README.md ├── docs ├── .gitignore ├── Cassandra.md ├── CqrsEventSourcing.md ├── Gemfile ├── Gemfile.lock ├── HttpJson.md ├── KafkaAvro.md ├── StreamsWithActors.md ├── TwitterAlgebird.md ├── _config.yml ├── _includes │ ├── .gitignore │ └── nav.html ├── index.md └── png │ ├── 2PartitionKafkaSourceStream.png │ ├── ADJ0HT.png │ ├── AlgebirdApproximatorsAgentsFlow.png │ ├── AvgAgentFlow.png │ ├── AvgFlow.png │ ├── AvroDeserializer.png │ ├── AvroSerializer.png │ ├── CMSAgentFlow.png │ ├── CMSFlow.png │ ├── CQRS.png │ ├── CassandraBind.png │ ├── CassandraBoundQuery.png │ ├── CassandraConditional.png │ ├── CassandraMappedPaging.png │ ├── CassandraPaging.png │ ├── CassandraQuery.png │ ├── CassandraQueryStream.png │ ├── CassandraRetrySink.png │ ├── CassandraSink.png │ ├── CassandraSinkStream.png │ ├── ConsumerRecordDeserializer.png │ ├── DecayedValueAgentFlow.png │ ├── HLLAgentFlow.png │ ├── HLLFlow.png │ ├── KafkaSink.png │ ├── KafkaSinkStream.png │ ├── KafkaSource.png │ ├── KafkaSourceStream.png │ ├── ParallelHttpFlow.png │ ├── QTreeAgentFlow.png │ ├── RunnableGraph2Actors.png │ ├── RunnableGraph4Actor.png │ ├── SpyFlow.png │ ├── TypedQuery&TypedResponseFlow.png │ ├── TypedQueryFlow.png │ ├── TypedQueryResponseFlow.png │ ├── TypedResponseFlow.png │ ├── ZipTimeFlow.png │ ├── consumerRecordsDequeue.png │ ├── dualConsumerRecordsFlow.png │ ├── estSizeFlow.png │ ├── extractValueFlow.png │ ├── firstQuartileFlow.png │ ├── interQuartileMean.png │ ├── maxFlow.png │ ├── minFlow.png │ ├── qTreeMaxFlow.png │ ├── qTreeMinFlow.png │ ├── secondQuartileFlow.png │ ├── sumAvgFlow.png │ ├── sumHLLs.png │ ├── thirdQuartileFlow.png │ ├── toApproximate.png │ ├── toApproximates.png │ ├── toCaseClass.png │ └── tripleConsumerRecordsFlow.png ├── pom.xml ├── project ├── .gitignore ├── Dependencies.scala ├── build.properties ├── plugins.sbt └── project │ └── .gitignore ├── scalastyle-config.xml ├── scalastyle-test-config.xml └── src ├── it ├── resources │ ├── logback.xml │ ├── reference.conf │ ├── testAvroKafkaConsumer.properties │ ├── testAvroKafkaProducer.properties │ ├── testKafkaConsumer.properties │ └── testKafkaProducer.properties └── scala │ └── com │ └── github │ └── garyaiki │ └── dendrites │ ├── cassandra │ ├── BoundStmtSpec.scala │ ├── PlaylistSongConfig.scala │ ├── Playlists.scala │ ├── Songs.scala │ ├── fixtures │ │ ├── BeforeAfterAllBuilder.scala │ │ └── package.scala │ └── stream │ │ ├── CassandraPlaylistSpec.scala │ │ ├── CassandraSongSpec.scala │ │ └── CassandraSpec.scala │ ├── examples │ ├── account │ │ └── http │ │ │ ├── BalancesServiceSpec.scala │ │ │ ├── CheckingBalancesClientConfigSpec.scala │ │ │ ├── CheckingCallSpec.scala │ │ │ ├── MoneyMarketBalancesClientConfigSpec.scala │ │ │ ├── SavingsBalancesClientConfigSpec.scala │ │ │ └── stream │ │ │ ├── CheckingCallFlowSpec.scala │ │ │ ├── MoneyMarketCallFlowSpec.scala │ │ │ ├── ParallelCallAlgebirdFlowSpec.scala │ │ │ ├── ParallelCallFlowSpec.scala │ │ │ ├── ParallelCallLeftRightFlowSpec.scala │ │ │ ├── ParallelCallLogLeftPassRightFlowSpec.scala │ │ │ ├── SavingsCallFlowSpec.scala │ │ │ └── actor │ │ │ └── StreamLogAgentsSupervisorSpec.scala │ └── cqrs │ │ └── shoppingcart │ │ ├── ShoppingCartCmdSpec.scala │ │ ├── cassandra │ │ └── stream │ │ │ ├── CassandraShoppingCartCmdSpec.scala │ │ │ ├── CassandraShoppingCartEvtLogSpec.scala │ │ │ └── CassandraShoppingCartSpec.scala │ │ ├── cmd │ │ └── stream │ │ │ ├── ShoppingCartCmdAndEvtSinkSpec.scala │ │ │ ├── ShoppingCartCmdAndEvtSinksSpec.scala │ │ │ └── ShoppingCartCmdAndEvtSpec.scala │ │ └── fixtures │ │ ├── ShoppingCartBehaviors.scala │ │ └── ShoppingCartCmdBuilder.scala │ ├── http │ └── stream │ │ └── TypedQueryResponseFlowSpec.scala │ ├── kafka │ ├── AvroKafkaProducerConsumerSpec.scala │ ├── KafkaProducerConsumerSpec.scala │ └── stream │ │ └── KafkaStreamSpec.scala │ └── testdriven │ └── StopSystemAfterAll.scala ├── main ├── resources │ ├── avro │ │ └── getAccountBalances.avsc │ ├── kafkaConsumer.properties │ ├── kafkaProducer.properties │ └── reference.conf └── scala │ ├── .gitignore │ └── com │ └── github │ └── garyaiki │ └── dendrites │ ├── aggregator │ ├── Stub.scala │ └── package.scala │ ├── algebird │ ├── .gitignore │ ├── AlgebirdConfigurer.scala │ ├── agent │ │ ├── Agents.scala │ │ ├── AveragedAgent.scala │ │ ├── CountMinSketchAgent.scala │ │ ├── DecayedValueAgent.scala │ │ ├── HyperLogLogAgent.scala │ │ ├── QtreeAgent.scala │ │ ├── package.scala │ │ └── stream │ │ │ ├── ApproximatorsFlow.scala │ │ │ ├── AveragedAgentFlow.scala │ │ │ ├── CountMinSketchAgentFlow.scala │ │ │ ├── DecayedValueAgentFlow.scala │ │ │ ├── HyperLogLogAgentFlow.scala │ │ │ ├── ParallelApproximators.scala │ │ │ └── QTreeAgentFlow.scala │ ├── package.scala │ ├── stream │ │ ├── CreateCMSFlow.scala │ │ ├── CreateHLLFlow.scala │ │ ├── ZipTimeFlow.scala │ │ └── package.scala │ └── typeclasses │ │ ├── HyperLogLogLike.scala │ │ └── QTreeLike.scala │ ├── avro │ ├── AvroOps.scala │ ├── package.scala │ └── stream │ │ ├── AvroDeserializer.scala │ │ └── AvroSerializer.scala │ ├── avro4s │ ├── Avro4sOps.scala │ ├── package.scala │ └── stream │ │ ├── Avro4sDeserializer.scala │ │ └── Avro4sSerializer.scala │ ├── cassandra │ ├── CassandraConfig.scala │ ├── package.scala │ └── stream │ │ ├── CassandraBoundQuery.scala │ │ ├── CassandraConditional.scala │ │ ├── CassandraKeyValueFlow.scala │ │ ├── CassandraMappedPaging.scala │ │ ├── CassandraPaging.scala │ │ ├── CassandraQuery.scala │ │ ├── CassandraRetrySink.scala │ │ └── CassandraSink.scala │ ├── concurrent │ ├── Stub.scala │ └── package.scala │ ├── cqrs │ ├── Command.scala │ └── Event.scala │ ├── examples │ ├── account │ │ ├── AccountType.scala │ │ ├── avro │ │ │ ├── AvroGetAccountBalances.scala │ │ │ ├── AvroGetCustomerAccountBalances.scala │ │ │ └── package.scala │ │ ├── avro4s │ │ │ ├── Avro4sBalance.scala │ │ │ ├── Avro4sCheckingAccountBalances.scala │ │ │ ├── Avro4sCheckingAccountOptBalances.scala │ │ │ ├── Avro4sGetAccountBalances.scala │ │ │ ├── Avro4sGetCustomerAccountBalances.scala │ │ │ ├── Avro4sGetCustomerStringAccountBalances.scala │ │ │ └── package.scala │ │ ├── http │ │ │ ├── BalancesServer.scala │ │ │ ├── BalancesService.scala │ │ │ ├── CheckingBalancesClientConfig.scala │ │ │ ├── MoneyMarketBalancesClientConfig.scala │ │ │ ├── SavingsBalancesClientConfig.scala │ │ │ ├── package.scala │ │ │ └── stream │ │ │ │ ├── CheckingCallFlow.scala │ │ │ │ ├── MoneyMarketCallFlow.scala │ │ │ │ ├── ParallelCallFlow.scala │ │ │ │ ├── SavingsCallFlow.scala │ │ │ │ └── actor │ │ │ │ ├── ParallelCallSupervisor.scala │ │ │ │ └── StreamLogAgentsSupervisor.scala │ │ ├── kafka │ │ │ ├── AccountConsumer.scala │ │ │ └── AccountProducer.scala │ │ ├── package.scala │ │ └── stream │ │ │ ├── Stub.scala │ │ │ └── package.scala │ └── cqrs │ │ └── shoppingcart │ │ ├── avro4s │ │ └── Avro4sShoppingCartCmd.scala │ │ ├── cassandra │ │ ├── CassandraShoppingCart.scala │ │ ├── CassandraShoppingCartEvtLog.scala │ │ ├── RetryConfig.scala │ │ └── ShoppingCartConfig.scala │ │ ├── cmd │ │ ├── kafka │ │ │ ├── ShoppingCartCmdConsumer.scala │ │ │ └── ShoppingCartCmdProducer.scala │ │ ├── package.scala │ │ └── stream │ │ │ └── package.scala │ │ ├── event │ │ └── package.scala │ │ └── package.scala │ ├── filters │ ├── Stub.scala │ └── package.scala │ ├── http │ ├── Stub.scala │ ├── package.scala │ └── stream │ │ ├── TypedQueryFlow.scala │ │ ├── TypedQueryResponseFlow.scala │ │ └── TypedResponseFlow.scala │ ├── kafka │ ├── ConsumerConfig.scala │ ├── ProducerConfig.scala │ ├── package.scala │ └── stream │ │ ├── ConsumerRecordQueue.scala │ │ ├── ConsumerRecordsToQueue.scala │ │ ├── KafkaSink.scala │ │ ├── KafkaSource.scala │ │ ├── avro │ │ └── ConsumerRecordDeserializer.scala │ │ ├── avro4s │ │ └── ConsumerRecordDeserializer.scala │ │ └── package.scala │ ├── package.scala │ ├── reflection │ ├── Stub.scala │ └── package.scala │ └── stream │ ├── SpyFlow.scala │ ├── TimerConfig.scala │ ├── actor │ ├── CallStream.scala │ ├── CallStreamSupervisor.scala │ └── OtherActor.scala │ └── package.scala └── test ├── resources ├── avro │ ├── balance.avsc │ ├── checkingAccountBalances.avsc │ ├── checkingAccountOptBalances.avsc │ ├── getCustomerAccountBalances.avsc │ ├── getCustomerStringAccountBalances.avsc │ └── shoppingCartCmd.avsc └── logback.xml └── scala ├── .gitignore └── com └── github └── garyaiki └── dendrites ├── PropertiesSpec.scala ├── akka ├── DispatchersSpec.scala └── TestKitUsageSpec.scala ├── algebird ├── AlgebirdConfigurerSpec.scala ├── AveragedSpec.scala ├── BloomFilterSpec.scala ├── CountMinSketchSpec.scala ├── DecayedValueSpec.scala ├── HyperLogLogSpec.scala ├── MaxSpec.scala ├── MinSpec.scala ├── QTreeSpec.scala ├── agent │ ├── AveragedAgentSpec.scala │ ├── CountMinSketchAgentSpec.scala │ ├── DecayedValueAgentSpec.scala │ ├── HyperLogLogAgentSpec.scala │ ├── QtreeAgentSpec.scala │ └── stream │ │ ├── ApproximatorsFlowSpec.scala │ │ ├── AveragedAgentFlowSpec.scala │ │ ├── CountMinSketchAgentFlowSpec.scala │ │ ├── DecayedValueAgentFlowSpec.scala │ │ ├── HyperLogLogAgentFlowSpec.scala │ │ ├── ParallelApproximatorsSinkSpec.scala │ │ ├── ParallelApproximatorsSpec.scala │ │ └── QTreeAgentFlowSpec.scala ├── fixtures │ ├── BloomFilterBuilder.scala │ └── QTreeBuilder.scala └── stream │ ├── AveragedFlowSpec.scala │ ├── BloomFilterFlowSpec.scala │ ├── CountMinSketchFlowSpec.scala │ ├── DecayedValueFlowSpec.scala │ ├── HyperLogLogFlowSpec.scala │ ├── MaxFlowSpec.scala │ ├── MinFlowSpec.scala │ ├── QTreeFlowSpec.scala │ └── SumAveragedFlowSpec.scala ├── avro ├── AvroByteArraySpec.scala └── stream │ ├── AvroDeserializerSpec.scala │ └── AvroSerializerSpec.scala ├── avro4s └── stream │ └── Avro4sSerializerDeserializerSpec.scala ├── examples ├── account │ ├── AccountTypeSpec.scala │ ├── avro │ │ └── AvroGetCustomerAccountBalancesSpec.scala │ ├── avro4s │ │ ├── Avro4sBalanceSpec.scala │ │ ├── Avro4sCheckingAccountBalancesSpec.scala │ │ ├── Avro4sCheckingAccountOptBalancesSpec.scala │ │ ├── Avro4sGetAccountBalancesSpec.scala │ │ ├── Avro4sGetCustomerAccountBalancesSpec.scala │ │ └── Avro4sGetCustomerStringAccountBalancesSpec.scala │ └── http │ │ └── BalancesProtocolsSpec.scala ├── cqrs │ └── shoppingcart │ │ ├── avro4s │ │ └── Avro4sShoppingCartCmdSpec.scala │ │ └── event │ │ └── CompensateDupsSpec.scala └── fixtures │ ├── AccountTypeLike.scala │ └── AccountTypesBuilder.scala ├── filters └── ProductFilterSpec.scala ├── fixtures ├── CaseClassLike.scala ├── InetAddressesBuilder.scala ├── SysProcessUtils.scala ├── TestValuesBuilder.scala └── TrigUtils.scala ├── http ├── CaseClassToGetQuerySpec.scala └── CreateUrlSpec.scala ├── kafka ├── ConsumerPropertiesSpec.scala ├── MockAvroProducerSpec.scala ├── MockConsumerConfig.scala ├── MockConsumerRecords.scala ├── MockConsumerSpec.scala ├── MockProducerConfig.scala ├── ProducerPropertiesSpec.scala └── stream │ ├── ConsumerRecordSpec.scala │ ├── KafkaSinkSupervisionSpec.scala │ ├── KafkaSourceSupervisionSpec.scala │ ├── MockKafkaSink.scala │ ├── MockKafkaSource.scala │ ├── MockSourceConsumerRecordSpec.scala │ ├── MockSourceSpec.scala │ ├── ResilientStreamSpec.scala │ └── actor │ └── MockSourceSupervisionSpec.scala └── testdriven └── StopSystemAfterAll.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.scalastyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/.scalastyle -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /_site/ 2 | -------------------------------------------------------------------------------- /docs/Cassandra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/Cassandra.md -------------------------------------------------------------------------------- /docs/CqrsEventSourcing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/CqrsEventSourcing.md -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/HttpJson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/HttpJson.md -------------------------------------------------------------------------------- /docs/KafkaAvro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/KafkaAvro.md -------------------------------------------------------------------------------- /docs/StreamsWithActors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/StreamsWithActors.md -------------------------------------------------------------------------------- /docs/TwitterAlgebird.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/TwitterAlgebird.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/_includes/.gitignore -------------------------------------------------------------------------------- /docs/_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/_includes/nav.html -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/png/2PartitionKafkaSourceStream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/2PartitionKafkaSourceStream.png -------------------------------------------------------------------------------- /docs/png/ADJ0HT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/ADJ0HT.png -------------------------------------------------------------------------------- /docs/png/AlgebirdApproximatorsAgentsFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/AlgebirdApproximatorsAgentsFlow.png -------------------------------------------------------------------------------- /docs/png/AvgAgentFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/AvgAgentFlow.png -------------------------------------------------------------------------------- /docs/png/AvgFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/AvgFlow.png -------------------------------------------------------------------------------- /docs/png/AvroDeserializer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/AvroDeserializer.png -------------------------------------------------------------------------------- /docs/png/AvroSerializer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/AvroSerializer.png -------------------------------------------------------------------------------- /docs/png/CMSAgentFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CMSAgentFlow.png -------------------------------------------------------------------------------- /docs/png/CMSFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CMSFlow.png -------------------------------------------------------------------------------- /docs/png/CQRS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CQRS.png -------------------------------------------------------------------------------- /docs/png/CassandraBind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CassandraBind.png -------------------------------------------------------------------------------- /docs/png/CassandraBoundQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CassandraBoundQuery.png -------------------------------------------------------------------------------- /docs/png/CassandraConditional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CassandraConditional.png -------------------------------------------------------------------------------- /docs/png/CassandraMappedPaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CassandraMappedPaging.png -------------------------------------------------------------------------------- /docs/png/CassandraPaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CassandraPaging.png -------------------------------------------------------------------------------- /docs/png/CassandraQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CassandraQuery.png -------------------------------------------------------------------------------- /docs/png/CassandraQueryStream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CassandraQueryStream.png -------------------------------------------------------------------------------- /docs/png/CassandraRetrySink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CassandraRetrySink.png -------------------------------------------------------------------------------- /docs/png/CassandraSink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CassandraSink.png -------------------------------------------------------------------------------- /docs/png/CassandraSinkStream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/CassandraSinkStream.png -------------------------------------------------------------------------------- /docs/png/ConsumerRecordDeserializer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/ConsumerRecordDeserializer.png -------------------------------------------------------------------------------- /docs/png/DecayedValueAgentFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/DecayedValueAgentFlow.png -------------------------------------------------------------------------------- /docs/png/HLLAgentFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/HLLAgentFlow.png -------------------------------------------------------------------------------- /docs/png/HLLFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/HLLFlow.png -------------------------------------------------------------------------------- /docs/png/KafkaSink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/KafkaSink.png -------------------------------------------------------------------------------- /docs/png/KafkaSinkStream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/KafkaSinkStream.png -------------------------------------------------------------------------------- /docs/png/KafkaSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/KafkaSource.png -------------------------------------------------------------------------------- /docs/png/KafkaSourceStream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/KafkaSourceStream.png -------------------------------------------------------------------------------- /docs/png/ParallelHttpFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/ParallelHttpFlow.png -------------------------------------------------------------------------------- /docs/png/QTreeAgentFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/QTreeAgentFlow.png -------------------------------------------------------------------------------- /docs/png/RunnableGraph2Actors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/RunnableGraph2Actors.png -------------------------------------------------------------------------------- /docs/png/RunnableGraph4Actor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/RunnableGraph4Actor.png -------------------------------------------------------------------------------- /docs/png/SpyFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/SpyFlow.png -------------------------------------------------------------------------------- /docs/png/TypedQuery&TypedResponseFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/TypedQuery&TypedResponseFlow.png -------------------------------------------------------------------------------- /docs/png/TypedQueryFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/TypedQueryFlow.png -------------------------------------------------------------------------------- /docs/png/TypedQueryResponseFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/TypedQueryResponseFlow.png -------------------------------------------------------------------------------- /docs/png/TypedResponseFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/TypedResponseFlow.png -------------------------------------------------------------------------------- /docs/png/ZipTimeFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/ZipTimeFlow.png -------------------------------------------------------------------------------- /docs/png/consumerRecordsDequeue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/consumerRecordsDequeue.png -------------------------------------------------------------------------------- /docs/png/dualConsumerRecordsFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/dualConsumerRecordsFlow.png -------------------------------------------------------------------------------- /docs/png/estSizeFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/estSizeFlow.png -------------------------------------------------------------------------------- /docs/png/extractValueFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/extractValueFlow.png -------------------------------------------------------------------------------- /docs/png/firstQuartileFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/firstQuartileFlow.png -------------------------------------------------------------------------------- /docs/png/interQuartileMean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/interQuartileMean.png -------------------------------------------------------------------------------- /docs/png/maxFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/maxFlow.png -------------------------------------------------------------------------------- /docs/png/minFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/minFlow.png -------------------------------------------------------------------------------- /docs/png/qTreeMaxFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/qTreeMaxFlow.png -------------------------------------------------------------------------------- /docs/png/qTreeMinFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/qTreeMinFlow.png -------------------------------------------------------------------------------- /docs/png/secondQuartileFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/secondQuartileFlow.png -------------------------------------------------------------------------------- /docs/png/sumAvgFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/sumAvgFlow.png -------------------------------------------------------------------------------- /docs/png/sumHLLs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/sumHLLs.png -------------------------------------------------------------------------------- /docs/png/thirdQuartileFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/thirdQuartileFlow.png -------------------------------------------------------------------------------- /docs/png/toApproximate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/toApproximate.png -------------------------------------------------------------------------------- /docs/png/toApproximates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/toApproximates.png -------------------------------------------------------------------------------- /docs/png/toCaseClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/toCaseClass.png -------------------------------------------------------------------------------- /docs/png/tripleConsumerRecordsFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/docs/png/tripleConsumerRecordsFlow.png -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/pom.xml -------------------------------------------------------------------------------- /project/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /project/Dependencies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/project/Dependencies.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.2 -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /project/project/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /scalastyle-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/scalastyle-config.xml -------------------------------------------------------------------------------- /scalastyle-test-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/scalastyle-test-config.xml -------------------------------------------------------------------------------- /src/it/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/resources/logback.xml -------------------------------------------------------------------------------- /src/it/resources/reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/resources/reference.conf -------------------------------------------------------------------------------- /src/it/resources/testAvroKafkaConsumer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/resources/testAvroKafkaConsumer.properties -------------------------------------------------------------------------------- /src/it/resources/testAvroKafkaProducer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/resources/testAvroKafkaProducer.properties -------------------------------------------------------------------------------- /src/it/resources/testKafkaConsumer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/resources/testKafkaConsumer.properties -------------------------------------------------------------------------------- /src/it/resources/testKafkaProducer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/resources/testKafkaProducer.properties -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/cassandra/BoundStmtSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/cassandra/BoundStmtSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/cassandra/PlaylistSongConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/cassandra/PlaylistSongConfig.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/cassandra/Playlists.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/cassandra/Playlists.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/cassandra/Songs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/cassandra/Songs.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/cassandra/fixtures/BeforeAfterAllBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/cassandra/fixtures/BeforeAfterAllBuilder.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/cassandra/fixtures/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/cassandra/fixtures/package.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraPlaylistSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraPlaylistSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraSongSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraSongSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/BalancesServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/BalancesServiceSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/CheckingBalancesClientConfigSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/CheckingBalancesClientConfigSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/CheckingCallSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/CheckingCallSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/MoneyMarketBalancesClientConfigSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/MoneyMarketBalancesClientConfigSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/SavingsBalancesClientConfigSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/SavingsBalancesClientConfigSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/CheckingCallFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/CheckingCallFlowSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/MoneyMarketCallFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/MoneyMarketCallFlowSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/ParallelCallAlgebirdFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/ParallelCallAlgebirdFlowSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/ParallelCallFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/ParallelCallFlowSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/ParallelCallLeftRightFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/ParallelCallLeftRightFlowSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/ParallelCallLogLeftPassRightFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/ParallelCallLogLeftPassRightFlowSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/SavingsCallFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/SavingsCallFlowSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/actor/StreamLogAgentsSupervisorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/account/http/stream/actor/StreamLogAgentsSupervisorSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/ShoppingCartCmdSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/ShoppingCartCmdSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/stream/CassandraShoppingCartCmdSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/stream/CassandraShoppingCartCmdSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/stream/CassandraShoppingCartEvtLogSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/stream/CassandraShoppingCartEvtLogSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/stream/CassandraShoppingCartSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/stream/CassandraShoppingCartSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/stream/ShoppingCartCmdAndEvtSinkSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/stream/ShoppingCartCmdAndEvtSinkSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/stream/ShoppingCartCmdAndEvtSinksSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/stream/ShoppingCartCmdAndEvtSinksSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/stream/ShoppingCartCmdAndEvtSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/stream/ShoppingCartCmdAndEvtSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/fixtures/ShoppingCartBehaviors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/fixtures/ShoppingCartBehaviors.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/fixtures/ShoppingCartCmdBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/fixtures/ShoppingCartCmdBuilder.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/http/stream/TypedQueryResponseFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/http/stream/TypedQueryResponseFlowSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/kafka/AvroKafkaProducerConsumerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/kafka/AvroKafkaProducerConsumerSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/kafka/KafkaProducerConsumerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/kafka/KafkaProducerConsumerSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/kafka/stream/KafkaStreamSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/kafka/stream/KafkaStreamSpec.scala -------------------------------------------------------------------------------- /src/it/scala/com/github/garyaiki/dendrites/testdriven/StopSystemAfterAll.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/it/scala/com/github/garyaiki/dendrites/testdriven/StopSystemAfterAll.scala -------------------------------------------------------------------------------- /src/main/resources/avro/getAccountBalances.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/resources/avro/getAccountBalances.avsc -------------------------------------------------------------------------------- /src/main/resources/kafkaConsumer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/resources/kafkaConsumer.properties -------------------------------------------------------------------------------- /src/main/resources/kafkaProducer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/resources/kafkaProducer.properties -------------------------------------------------------------------------------- /src/main/resources/reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/resources/reference.conf -------------------------------------------------------------------------------- /src/main/scala/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/.gitignore -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/aggregator/Stub.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/aggregator/Stub.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/aggregator/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/aggregator/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/.gitignore: -------------------------------------------------------------------------------- 1 | /aggregator.sc 2 | -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/AlgebirdConfigurer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/AlgebirdConfigurer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/Agents.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/Agents.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/AveragedAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/AveragedAgent.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/CountMinSketchAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/CountMinSketchAgent.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/DecayedValueAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/DecayedValueAgent.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/HyperLogLogAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/HyperLogLogAgent.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/QtreeAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/QtreeAgent.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/ApproximatorsFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/ApproximatorsFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/AveragedAgentFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/AveragedAgentFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/CountMinSketchAgentFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/CountMinSketchAgentFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/DecayedValueAgentFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/DecayedValueAgentFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/HyperLogLogAgentFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/HyperLogLogAgentFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/ParallelApproximators.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/ParallelApproximators.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/QTreeAgentFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/agent/stream/QTreeAgentFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/stream/CreateCMSFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/stream/CreateCMSFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/stream/CreateHLLFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/stream/CreateHLLFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/stream/ZipTimeFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/stream/ZipTimeFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/stream/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/stream/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/typeclasses/HyperLogLogLike.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/typeclasses/HyperLogLogLike.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/algebird/typeclasses/QTreeLike.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/algebird/typeclasses/QTreeLike.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/avro/AvroOps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/avro/AvroOps.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/avro/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/avro/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/avro/stream/AvroDeserializer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/avro/stream/AvroDeserializer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/avro/stream/AvroSerializer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/avro/stream/AvroSerializer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/avro4s/Avro4sOps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/avro4s/Avro4sOps.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/avro4s/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/avro4s/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/avro4s/stream/Avro4sDeserializer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/avro4s/stream/Avro4sDeserializer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/avro4s/stream/Avro4sSerializer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/avro4s/stream/Avro4sSerializer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cassandra/CassandraConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cassandra/CassandraConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cassandra/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cassandra/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraBoundQuery.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraBoundQuery.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraConditional.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraConditional.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraKeyValueFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraKeyValueFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraMappedPaging.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraMappedPaging.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraPaging.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraPaging.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraQuery.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraQuery.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraRetrySink.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraRetrySink.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraSink.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cassandra/stream/CassandraSink.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/concurrent/Stub.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/concurrent/Stub.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/concurrent/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/concurrent/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cqrs/Command.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cqrs/Command.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/cqrs/Event.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/cqrs/Event.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/AccountType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/AccountType.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/avro/AvroGetAccountBalances.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/avro/AvroGetAccountBalances.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/avro/AvroGetCustomerAccountBalances.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/avro/AvroGetCustomerAccountBalances.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/avro/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/avro/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sBalance.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sBalance.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sCheckingAccountBalances.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sCheckingAccountBalances.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sCheckingAccountOptBalances.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sCheckingAccountOptBalances.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetAccountBalances.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetAccountBalances.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetCustomerAccountBalances.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetCustomerAccountBalances.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetCustomerStringAccountBalances.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetCustomerStringAccountBalances.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/avro4s/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/BalancesServer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/BalancesServer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/BalancesService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/BalancesService.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/CheckingBalancesClientConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/CheckingBalancesClientConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/MoneyMarketBalancesClientConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/MoneyMarketBalancesClientConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/SavingsBalancesClientConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/SavingsBalancesClientConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/CheckingCallFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/CheckingCallFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/MoneyMarketCallFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/MoneyMarketCallFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/ParallelCallFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/ParallelCallFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/SavingsCallFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/SavingsCallFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/actor/ParallelCallSupervisor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/actor/ParallelCallSupervisor.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/actor/StreamLogAgentsSupervisor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/http/stream/actor/StreamLogAgentsSupervisor.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/kafka/AccountConsumer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/kafka/AccountConsumer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/kafka/AccountProducer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/kafka/AccountProducer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/stream/Stub.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/stream/Stub.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/account/stream/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/account/stream/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/avro4s/Avro4sShoppingCartCmd.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/avro4s/Avro4sShoppingCartCmd.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/CassandraShoppingCart.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/CassandraShoppingCart.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/CassandraShoppingCartEvtLog.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/CassandraShoppingCartEvtLog.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/RetryConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/RetryConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/ShoppingCartConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cassandra/ShoppingCartConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/kafka/ShoppingCartCmdConsumer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/kafka/ShoppingCartCmdConsumer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/kafka/ShoppingCartCmdProducer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/kafka/ShoppingCartCmdProducer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/stream/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/cmd/stream/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/event/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/event/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/filters/Stub.scala: -------------------------------------------------------------------------------- 1 | package com.github.garyaiki.dendrites.filters 2 | 3 | trait Stub 4 | -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/filters/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/filters/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/http/Stub.scala: -------------------------------------------------------------------------------- 1 | package com.github.garyaiki.dendrites.http 2 | 3 | trait Stub 4 | -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/http/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/http/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/http/stream/TypedQueryFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/http/stream/TypedQueryFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/http/stream/TypedQueryResponseFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/http/stream/TypedQueryResponseFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/http/stream/TypedResponseFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/http/stream/TypedResponseFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/kafka/ConsumerConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/kafka/ConsumerConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/kafka/ProducerConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/kafka/ProducerConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/kafka/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/kafka/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/kafka/stream/ConsumerRecordQueue.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/kafka/stream/ConsumerRecordQueue.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/kafka/stream/ConsumerRecordsToQueue.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/kafka/stream/ConsumerRecordsToQueue.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/kafka/stream/KafkaSink.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/kafka/stream/KafkaSink.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/kafka/stream/KafkaSource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/kafka/stream/KafkaSource.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/kafka/stream/avro/ConsumerRecordDeserializer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/kafka/stream/avro/ConsumerRecordDeserializer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/kafka/stream/avro4s/ConsumerRecordDeserializer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/kafka/stream/avro4s/ConsumerRecordDeserializer.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/kafka/stream/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/kafka/stream/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/reflection/Stub.scala: -------------------------------------------------------------------------------- 1 | package com.github.garyaiki.dendrites.reflection 2 | 3 | trait Stub 4 | -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/reflection/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/reflection/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/stream/SpyFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/stream/SpyFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/stream/TimerConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/stream/TimerConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/stream/actor/CallStream.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/stream/actor/CallStream.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/stream/actor/CallStreamSupervisor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/stream/actor/CallStreamSupervisor.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/stream/actor/OtherActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/stream/actor/OtherActor.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/garyaiki/dendrites/stream/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/main/scala/com/github/garyaiki/dendrites/stream/package.scala -------------------------------------------------------------------------------- /src/test/resources/avro/balance.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/resources/avro/balance.avsc -------------------------------------------------------------------------------- /src/test/resources/avro/checkingAccountBalances.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/resources/avro/checkingAccountBalances.avsc -------------------------------------------------------------------------------- /src/test/resources/avro/checkingAccountOptBalances.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/resources/avro/checkingAccountOptBalances.avsc -------------------------------------------------------------------------------- /src/test/resources/avro/getCustomerAccountBalances.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/resources/avro/getCustomerAccountBalances.avsc -------------------------------------------------------------------------------- /src/test/resources/avro/getCustomerStringAccountBalances.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/resources/avro/getCustomerStringAccountBalances.avsc -------------------------------------------------------------------------------- /src/test/resources/avro/shoppingCartCmd.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/resources/avro/shoppingCartCmd.avsc -------------------------------------------------------------------------------- /src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/resources/logback.xml -------------------------------------------------------------------------------- /src/test/scala/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/.gitignore -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/PropertiesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/PropertiesSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/akka/DispatchersSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/akka/DispatchersSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/akka/TestKitUsageSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/akka/TestKitUsageSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/AlgebirdConfigurerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/AlgebirdConfigurerSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/AveragedSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/AveragedSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/BloomFilterSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/BloomFilterSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/CountMinSketchSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/CountMinSketchSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/DecayedValueSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/DecayedValueSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/HyperLogLogSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/HyperLogLogSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/MaxSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/MaxSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/MinSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/MinSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/QTreeSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/QTreeSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/AveragedAgentSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/AveragedAgentSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/CountMinSketchAgentSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/CountMinSketchAgentSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/DecayedValueAgentSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/DecayedValueAgentSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/HyperLogLogAgentSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/HyperLogLogAgentSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/QtreeAgentSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/QtreeAgentSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/ApproximatorsFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/ApproximatorsFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/AveragedAgentFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/AveragedAgentFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/CountMinSketchAgentFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/CountMinSketchAgentFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/DecayedValueAgentFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/DecayedValueAgentFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/HyperLogLogAgentFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/HyperLogLogAgentFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/ParallelApproximatorsSinkSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/ParallelApproximatorsSinkSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/ParallelApproximatorsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/ParallelApproximatorsSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/QTreeAgentFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/agent/stream/QTreeAgentFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/fixtures/BloomFilterBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/fixtures/BloomFilterBuilder.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/fixtures/QTreeBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/fixtures/QTreeBuilder.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/stream/AveragedFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/stream/AveragedFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/stream/BloomFilterFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/stream/BloomFilterFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/stream/CountMinSketchFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/stream/CountMinSketchFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/stream/DecayedValueFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/stream/DecayedValueFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/stream/HyperLogLogFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/stream/HyperLogLogFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/stream/MaxFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/stream/MaxFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/stream/MinFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/stream/MinFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/stream/QTreeFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/stream/QTreeFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/algebird/stream/SumAveragedFlowSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/algebird/stream/SumAveragedFlowSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/avro/AvroByteArraySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/avro/AvroByteArraySpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/avro/stream/AvroDeserializerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/avro/stream/AvroDeserializerSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/avro/stream/AvroSerializerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/avro/stream/AvroSerializerSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/avro4s/stream/Avro4sSerializerDeserializerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/avro4s/stream/Avro4sSerializerDeserializerSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/account/AccountTypeSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/account/AccountTypeSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/account/avro/AvroGetCustomerAccountBalancesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/account/avro/AvroGetCustomerAccountBalancesSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sBalanceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sBalanceSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sCheckingAccountBalancesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sCheckingAccountBalancesSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sCheckingAccountOptBalancesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sCheckingAccountOptBalancesSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetAccountBalancesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetAccountBalancesSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetCustomerAccountBalancesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetCustomerAccountBalancesSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetCustomerStringAccountBalancesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/account/avro4s/Avro4sGetCustomerStringAccountBalancesSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/account/http/BalancesProtocolsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/account/http/BalancesProtocolsSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/avro4s/Avro4sShoppingCartCmdSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/avro4s/Avro4sShoppingCartCmdSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/event/CompensateDupsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/cqrs/shoppingcart/event/CompensateDupsSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/fixtures/AccountTypeLike.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/fixtures/AccountTypeLike.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/examples/fixtures/AccountTypesBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/examples/fixtures/AccountTypesBuilder.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/filters/ProductFilterSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/filters/ProductFilterSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/fixtures/CaseClassLike.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/fixtures/CaseClassLike.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/fixtures/InetAddressesBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/fixtures/InetAddressesBuilder.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/fixtures/SysProcessUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/fixtures/SysProcessUtils.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/fixtures/TestValuesBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/fixtures/TestValuesBuilder.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/fixtures/TrigUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/fixtures/TrigUtils.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/http/CaseClassToGetQuerySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/http/CaseClassToGetQuerySpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/http/CreateUrlSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/http/CreateUrlSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/ConsumerPropertiesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/ConsumerPropertiesSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/MockAvroProducerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/MockAvroProducerSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/MockConsumerConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/MockConsumerConfig.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/MockConsumerRecords.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/MockConsumerRecords.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/MockConsumerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/MockConsumerSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/MockProducerConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/MockProducerConfig.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/ProducerPropertiesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/ProducerPropertiesSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/stream/ConsumerRecordSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/stream/ConsumerRecordSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/stream/KafkaSinkSupervisionSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/stream/KafkaSinkSupervisionSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/stream/KafkaSourceSupervisionSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/stream/KafkaSourceSupervisionSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/stream/MockKafkaSink.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/stream/MockKafkaSink.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/stream/MockKafkaSource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/stream/MockKafkaSource.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/stream/MockSourceConsumerRecordSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/stream/MockSourceConsumerRecordSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/stream/MockSourceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/stream/MockSourceSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/stream/ResilientStreamSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/stream/ResilientStreamSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/kafka/stream/actor/MockSourceSupervisionSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/kafka/stream/actor/MockSourceSupervisionSpec.scala -------------------------------------------------------------------------------- /src/test/scala/com/github/garyaiki/dendrites/testdriven/StopSystemAfterAll.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garyaiki/dendrites/HEAD/src/test/scala/com/github/garyaiki/dendrites/testdriven/StopSystemAfterAll.scala --------------------------------------------------------------------------------