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

reactive

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

renatocaval
renatocaval commented Apr 24, 2020

In #10199 we added symbolic methods to TypeMap, but as signaled by @NthPortal we should avoid this.

Triggered by:

I'm a bit late to the party here, but multiple (non-implicit) parameters to a symbolic/infix method are highly discouraged, and planned to be deprecated. See scala/scala-dev#496 and lampepfl/dotty#4311 (comment).

_Originally posted by @n

akka
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
Qiao-Jin
Qiao-Jin commented Apr 21, 2020

I'm new in Akka and trying to self-define a dispatcher in my code. But there are so few akka dotnet examples available, and most of them are using config files..
Could I create a dispatcher in code, i.e., like the follows:

public Dispatcher myDispatcher = new Dispatcher(new DispatcherConfigurator(ConfigurationFactory.ParseString(@"akka.actor.default-dispatcher { type = ""Akka.Dispatch.TaskDisp

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

simonbasle
simonbasle commented Apr 24, 2020

Motivation

Some IDEs like IntelliJ don't display the javadoc custom tags at all in their javadoc popup.

As a consequence, discovering information about the discard and continue support might be difficult.

Searching the HTML version or the source to look for information about support might still be acceptable, but the tags should not be the only places where eg. a caveat or structuring im

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

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) {
watermill
oobles
oobles commented Apr 16, 2020

This should be a really easy one, but I can't seem to find a solution. How do you secure content registered with StaticContentSupport? I'd like to have /protected static content and open static content, with Routing looking something like this:

return Routing.builder()
.register(WebSecurity.create(getSecurity()))
.register("/protected", StaticContentSupport.builder(protectedPath).welcomeFil

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.