vlingo-net / xoom-net-actors

Type safe Actor Model toolkit for reactive concurrency and resiliency using C# and other .NET languages.
Mozilla Public License 2.0
39 stars 18 forks source link

Support C# properties in generated proxies #94

Open tjaskula opened 3 years ago

tjaskula commented 3 years ago

For example a protocol like that:

public interface IEntity1
    {
        ICompletes<Entity1State> DefineWith(string name, int age);

        ICompletes<Entity1State> Current { get; }

        void ChangeName(string name);

        void IncreaseAge();
    }

Will not generate the correct handler for Current property because they are not supported