0

I'm trying to use the Worker package and the PostgreSQL package.

I'm not sure why but if I run the example in https://diegorochablog.wordpress.com/2014/02/18/worker-dart-concurrent-programming-does-not-have-to-be-hard/ After changing nothing but adding an import statement: import 'package:postgresql/postgresql.dart';, The example stops working (the task's execute is not called).

Dart VM version: 1.17.0-dev.4.1 (Thu May 19 11:21:39 2016) on "macos_x64".

pubspec.yaml

name: fibFuturesConcu
version: 0.0.1
description: A simple console application.
dependencies:
  worker: any

Update

Apparently it does not happen with the stable version of Dart (1.16.0).

Alon Amir
  • 4,913
  • 9
  • 47
  • 86

1 Answers1

0

The problem is gone when using Dart Stable 1.16.

Alon Amir
  • 4,913
  • 9
  • 47
  • 86