GithubHelp home page GithubHelp logo

Comments (2)

SandroMaglione avatar SandroMaglione commented on May 19, 2024

Hi @apiep

Am I correct in assuming that you just want to execute task1 and task2 one after the other, without dependencies between the two?

In that case you can use local to change the context from Deps1 to Deps2:

import 'package:fpdart/fpdart.dart';

class Deps1 {
  final String dep;
  const Deps1(this.dep);
}

class Deps2 {
  final String dep;
  const Deps2(this.dep);
}

Reader<Deps1, Task<bool>> waitForAuthenticated() => Reader(
      (deps1) {
        print('Execute waitForAuthenticated: ${deps1.dep}');
        return Task.of(true);
      },
    );

Reader<Deps2, Task<String>> getSomething() => Reader(
      (deps2) {
        print('Execute getSomething: ${deps2.dep}');
        return Task.of("");
      },
    );

void main() async {
  const _deps1 = Deps1('I am Deps1');
  const _deps2 = Deps2('I am Deps2');
  final pipe = waitForAuthenticated()
      .local<Deps2>(constF(_deps1))
      .andThen(getSomething)
      .run(_deps2);

  final result = await pipe.run();
}

This code chains the calls to waitForAuthenticated and getSomething by calling them one after the other. The result is the following:

Execute waitForAuthenticated: I am Deps1
Execute getSomething: I am Deps2

Is this what you where looking for?

from fpdart.

apiep avatar apiep commented on May 19, 2024

Yes it is something like that, that I wanted. Thank you :)

I noticed local method before, but because it has a parameter with it, that's the part what confuse me

from fpdart.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.