Skip to content
#

reactive

Here are 1,500 public repositories matching this topic...

radex
radex commented Jun 20, 2019

This is to fix: Nozbe/WatermelonDB#186

Right now, deleting records is not very efficient in WatermelonDB.

Say you have models like this: Blog has_many Post has_many Comment. If you want to delete a blog post, you also have to delete all its posts, and all their comments. This happens one-by-one currently. What we need is the ability to efficiently (and atomically if

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
Liovareg
Liovareg commented Jan 25, 2020

Context

We are discussing implementing Good Actions Hygiene from @MikeRyanDev in our project and found one place in example app that seems does not fit this pattern.

Here is the place: https://github.com/ngrx/platform/blob/master/projects/example-app/src/app/books/containers/collection-page.component.ts#L43

It's a common practice to dispatch some action in component's onInit. So, from ac

colearendt
colearendt commented Jul 3, 2019

It seems that Shiny chooses random ports from 3000-8000 for connections. Some possible improvements that would be desirable:

  • document that this is the random port range
  • allow specifying a different random port range
  • some mechanism for determining if the port is available before it is selected?
  • a way to exclude ports from the range

The context here is RStudio Server and users who w

mitchelllisle
mitchelllisle commented Aug 4, 2019

Hi! I am just getting into ReactiveX but am really enjoying it so far. With 3.0 coming out a lot of the old code snippets are out of data and although it's not too difficult to transpose, a lot of the old examples don't cover things like creating Observable from scratch etc.

Are there any plans to work on some training material? If so, I would be happy to send across a list of things that would

lettuce-core
yeikel
yeikel commented Jan 4, 2019

According to the generated build

The commands to launch are the following :

docker pull andypetrella/spark-notebook:0.7.0-scala-2.11.8-spark-2.1.1-hadoop-2.7.2-with-hive
docker run -p 9001:9001 andypetrella/spark-notebook:0.7.0-scala-2.11.8-spark-2.1.1-hadoop-2.7.2-with-hive

Using that image (and I think it i

simonbasle
simonbasle commented Feb 11, 2020

See also #2007

Motivation

Some particularities of dealing with window* operators and their produced windows are not exposed explicitly enough. Most notably, the fact that a window should be "consumed" (subscribed to at least) as often as possible.

One flavor that is particularly exposed is windowUntil/windowWhile, with its prefetch. Other windows generally ensure enough request

abelsromero
abelsromero commented Nov 30, 2019

I am struggling to test a verticle isolated and all documentation and examples found only show how to test rest endpoints.

Something as simple as this, always fails with timeout

    @Rule
    public RunTestOnContext rule = new RunTestOnContext();

    @Rule
    public Timeout timeout = Timeout.seconds(5L);

    @Test
    public void should_run_verticle(TestContext context) {
effector
bloadvenro
bloadvenro commented Oct 18, 2019

map(fn: (state: State, lastState?: T) => T)

We discussed this question a bit in community.

From my point of view lastState is not the best name for the second fn argument, because it actually contains NOT the last (previous as someone may think) state of current store, but current state of a computed one. Th

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

You can’t perform that action at this time.