The Wayback Machine - https://web.archive.org/web/20220131052818/https://github.com/topics/reactive
Skip to content
#

reactive

Here are 2,031 public repositories matching this topic...

solid
dEajL3kA
dEajL3kA commented Aug 17, 2021

Play Version

2.8.8

API

Java / SyncCacheApi

Operating System

Ubuntu 20.04 LTS

Linux 5.11.0-25-generic #27-Ubuntu SMP Fri Jul 9 23:06:29 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux

JDK

openjdk version "1.8.0_292"
OpenJDK Runtime Environment (build 1.8.0_292-8u292-b10-0ubuntu1-b10)
OpenJDK 64-Bit Server VM (build 25.292-b10, mixed mode)

radcortez
radcortez commented Dec 7, 2021

Description

If we use io.quarkus.runtime.annotations.RegisterForReflection#classNames to register classes for reflection it does not register classes up in the hierarchy.

On the other hand, if we use -H:ReflectionConfigurationFiles, it does register the full class hierarchy.

Implementation ideas

I think we should look for the full hierarchy here: https://github.com/quarkusio/qu

a616781689
a616781689 commented Nov 28, 2019

看了fish-redux的todoList demo,发现里面连接全局状态的方法是使用visitor

visitor: (String path, Page<Object, dynamic> page) {
      /// 只有特定的范围的 Page 才需要建立和 AppStore 的连接关系
      /// 满足 Page<T> ,T 是 GlobalBaseState 的子类
      if (page.isTypeof<GlobalBaseState>()) {
        /// 建立 AppStore 驱动 PageStore 的单向数据连接
        /// 1. 参数1 AppStore
        /// 2. 参数2 当 AppStore.state 变化时, PageStore.state 该如何变化
     
platform
watermill
gf3
gf3 commented Jan 7, 2022

i'm attempting to write a health check for a service that uses watermill and i'd like to be able to easily determine if the router is still up and running

Router exposes a channel at .Running(), and it's possible to infer if the router is closed with a little indirection:

running := false
go func() {
  r := router.Running()

  for {
    if _, open := <-r; open {
      running 
effector
vanniewelt
vanniewelt commented May 14, 2021

Correct me if I'm wrong, but it seems to me that different effector-vue APIs (especially Options API vs. Hooks API) assume different Vue versions.

For example, I tried to use Hooks API in combination with Vue 2 & @vue/composition-api but it won't compile because it tries to import composition functions directly from vue module (as in Vue 3) instead of @vue/compositon-api module (as in V

Pluto.jl

Improve this page

Add a description, image, and links to the reactive topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the reactive topic, visit your repo's landing page and select "manage topics."

Learn more