{"id":19656390,"url":"https://github.com/daggerok/reactor-examples","last_synced_at":"2025-04-30T21:07:52.418Z","repository":{"id":37262631,"uuid":"154916420","full_name":"daggerok/reactor-examples","owner":"daggerok","description":"Project reactor examples. https://daggerok.github.io/reactor-examples/","archived":false,"fork":false,"pushed_at":"2022-06-20T22:42:40.000Z","size":4265,"stargazers_count":3,"open_issues_count":7,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-30T21:07:38.992Z","etag":null,"topics":["cdi","fat-jar","gradle-fat-jar","gradle-fat-jar-task","gradle-kotlin-dsl","jandex","log4j","log4j2","logback","reactor","reactor-core","reactor3","slf4j","weld","weld-cdi","weld-se"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/daggerok.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-10-27T02:26:27.000Z","updated_at":"2023-12-20T16:02:00.000Z","dependencies_parsed_at":"2022-07-12T05:00:48.379Z","dependency_job_id":null,"html_url":"https://github.com/daggerok/reactor-examples","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Freactor-examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Freactor-examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Freactor-examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Freactor-examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daggerok","download_url":"https://codeload.github.com/daggerok/reactor-examples/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251782761,"owners_count":21642986,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cdi","fat-jar","gradle-fat-jar","gradle-fat-jar-task","gradle-kotlin-dsl","jandex","log4j","log4j2","logback","reactor","reactor-core","reactor3","slf4j","weld","weld-cdi","weld-se"],"created_at":"2024-11-11T15:27:38.968Z","updated_at":"2025-04-30T21:07:52.365Z","avatar_url":"https://github.com/daggerok.png","language":"Java","readme":"= reactor-examples image:https://travis-ci.org/daggerok/reactor-examples.svg?branch=master[\"Build Status\", link=\"https://travis-ci.org/daggerok/reactor-examples\"] image:https://github.com/daggerok/reactor-examples/workflows/CI/badge.svg[\"CI\", link=\"https://github.com/daggerok/reactor-examples/actions?query=workflow%3ACI\"]\n\nto see:\n\n- link:https://www.youtube.com/watch?v=kwuu1efzkf4[YouTube: Reactor in Action - Simon Baslé, Victor Grazi]\n\n//tag::content[]\n\n== intro\n\ncombine streams with: `Flux.merge`, `Flux.zip`, `Flux.first`, ...\n\ncreate streams with: `Flux.just`, `Flux.fromIterable`, `Flux.range`, `Flux.interval`, ...\n\ntransform streams with: `Flux.skip`, `Flux.map`, `Flux.flatMap`, `Flux.filter`\n\nRead link:https://daggerok.github.io/reactor-examples[project reference documentation]\n\n.docker / docker-compose\n[source,bash]\n----\n./mvnw\n./mvnw package docker-compose:up -P docker\n./mvnw docker-compose:down -P docker\n\n./gradlew\n./gradlew composeUp\n./gradlew composeDown\n----\n\n//end::content[]\n\n_other examples_\n\n- link:https://github.com/daggerok/avoiding-reactor-meltdown[Avoiding Reactor Meltdown or how to block correctly with Project Reactor (Spring WebFlux / RSocket)]\n- https://github.com/daggerok/reactive-programming-with-reactor-3\n- link:https://github.com/daggerok/webflux-reactor-broadcaster[Project Reactor Broadcaster]\n- link:https://github.com/daggerok/spring-5-examples[Spring Boot 2.x and Spring 5.x examples]\n- link:https://github.com/daggerok/reactor-netty-example[Reactor Netty Server sample on GitHub: daggerok/reactor-netty-example]\n\n_links_\n\n- link:https://www.youtube.com/watch?v=kwuu1efzkf4[YouTube: Reactor in Action - Simon Baslé, Victor Grazi]\n- link:https://www.codingame.com/playgrounds/929/reactive-programming-with-reactor-3/Intro?fbclid=IwAR3aKiqkI1_xUr5zrwqzQz-4djGdtRbbOuBR8FC9wWfxgH33MUBvvm3fuFQ[Learn Reactor 3]\n- link:https://projectreactor.io/learn[Helpful presentation]\n- link:https://www.baeldung.com/reactor-core[Reactor intro]\n\nrto do: linkhttps://www.youtube.com/watch?v=kwuu1efzkf4[YouTube: Reactor in Action - Simon Baslé, Victor Grazi]\n\nlinks:\n\n- https://projectreactor.io/docs/core/3.2.0.M2/api/reactor/core/publisher/TopicProcessor.html\n- https://projectreactor.io/docs/core/3.2.0.M2/api/reactor/core/publisher/WorkQueueProcessor.html\n- link:https://www.youtube.com/watch?v=pyqIpqCt8PU[Reactive Performance by Oleh Dokuka]\n- link:https://www.codingame.com/playgrounds/929/reactive-programming-with-reactor-3/Intro?fbclid=IwAR3aKiqkI1_xUr5zrwqzQz-4djGdtRbbOuBR8FC9wWfxgH33MUBvvm3fuFQ[Learn Reactor 3]\n- link:https://projectreactor.io/learn[Helpful presentation]\n- link:https://www.baeldung.com/reactor-core[Reactor intro]\n\nInitially generated by using link:https://github.com/daggerok/generator-jvm/[generator-jvm] yeoman generator (kotlin-parent-multi-project)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaggerok%2Freactor-examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaggerok%2Freactor-examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaggerok%2Freactor-examples/lists"}