Git Product home page Git Product logo

Comments (6)

JamesRandall avatar JamesRandall commented on June 20, 2024 1

No problem at all.

I moved Function Monkey to v1.0.0 since I recorded the first 2 videos and there were a couple of breaking changes - in case you run into any issues there is a very short doc here that describes them and how to resolve them:

https://functionmonkey.azurefromthetrenches.com/guides/upgradingTo1.0.html

I also cover them in part 3 which I should be publishing later today.

from functionmonkey.

JamesRandall avatar JamesRandall commented on June 20, 2024

Can you share your HelloWorldCommandHandler and HelloWorldCommand implementations?

from functionmonkey.

pkskelly avatar pkskelly commented on June 20, 2024

Hello James, thanks for the quick response! Below are the sample files.

The following is in a netstandard2.0 library named "ThreeWill.Functions.Commands"

using System;
using AzureFromTheTrenches.Commanding.Abstractions;

namespace ThreeWill.Functions.Commands
{
    public class HelloWorldCommand : ICommand<string>
    {
        public string Name { get; set; }
    }

}

The following is in a netstandard2.0 library named "ThreeWill.Functions.Application"

using System;
using System.Text;
using System.Collections.Generic;
using System.Threading.Tasks;
using AzureFromTheTrenches.Commanding.Abstractions;
using ThreeWill.Functions.Commands;

namespace ThreeWill.Functions.Application.Handlers
{
    internal class HelloWorldCommandHandler : ICommandHandler<HelloWorldCommand>
    {
        public Task ExecuteAsync(HelloWorldCommand command)
        {
            throw new NotImplementedException();
        }
    }
}

I can also share the entire solution if you'd like. Nothing in there of any import yet. Let me know. Very interested to get FunctionMonkey working - Thanks for creating it!

from functionmonkey.

pkskelly avatar pkskelly commented on June 20, 2024

@JamesRandall, I created a private repo and added you as a collaborator to the project. Likely something simple on my part is missing. :-)

from functionmonkey.

JamesRandall avatar JamesRandall commented on June 20, 2024

Thanks for that. The line:

internal class HelloWorldCommandHandler : ICommandHandler<HelloWorldCommand>

needs to read

internal class HelloWorldCommandHandler : ICommandHandler<HelloWorldCommand, string>

Your ExecuteAsync method signature will then become:

public async Task<string> ExecuteAsync(HelloWorldCommand command, string previousResult)

If your command returns a result the command handler needs that as part of its generic type definition.

Hope that helps! Will leave this issue open for the moment in case not!

from functionmonkey.

pkskelly avatar pkskelly commented on June 20, 2024

Thanks James, I knew it was likely something simple! Sorry for the bother but very much appreciate the response and patience! Works perfectly!

from functionmonkey.

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.