Injection using Spicelib command group syntax

85 Views Asked by At

I'm using Parsley 3.0 with the Flex extensions, but was wanting to use the spicelib syntax for executing a command group:

        Commands.asSequence()
                .create(LoadCachedCredentialsCommand)
                .create(LoginCommand)
                .lastResult(appInit_resultHandler)
                .error(appInit_errorHandler)
                .execute();

When doing it like this, I've noticed that injection with metadata in the commands do not work. Is this expected behavior? I assumed all the normal functionality with injection when defining the commands in the context would also work in this situation. But I wanted to confirm this to make sure I wasn't simply doing something wrong.

1

There are 1 best solutions below

1
On

This is expected, as Spicelib itself does not know about Parsley. If you want your sequence to be managed by Parsley, you need to add it manually to the context:

var sequence:Command = Commands.asSequence()
                               .create(LoadCachedCredentialsCommand)
                               .create(LoginCommand)
                               .lastResult(appInit_resultHandler)
                               .error(appInit_errorHandler)
                               .execute();
var context:Context = ...;          
ManagedCommands.wrap(sequence)
               .execute(context);

See also here in the Parsley documentation.