Giter VIP home page Giter VIP logo

executor's Introduction

Executor Utils

You can pass multiple arguments that can be complex objects to another program while executing that program from an executable file.

Install

To install Executor, run the following command in the Package Manager Console

Install-Package Sontx.Utils.Executor 

Usage

Just want to pass some arguments!

From caller:

var executor = new ProcessExecutor("another.exe");
executor.Add("person1", new Person() { Name = "tran xuan son", Age = 23 });
executor.Add(new Person() { Name = "tran xuan soan", Age = 24 });
executor.Add("myDog", new Dog() { CoatColor = "black", Type = "i don't know" });
executor.Add("some string");
executor.Add(3393);
executor.Execute();

From another program:

var deserializer = new ArgumentDeserializer();
if (deserializer.Deserialize())
{
    var person1 = deserializer.GetArgument<Person>("person1");
    var person2 = deserializer.GetArgument<Person>(1);
    var myDog = deserializer.GetArgument<Dog>("myDog");
    var myString = deserializer.GetArgument<string>(3);
    var myCode = deserializer.GetArgument<int>(4);
}

And communicate with another

From caller:

var executor = new ProcessExecutor("another.exe");
executor.Add("something", "your arguments");
executor.Execute();

executor.Transmitter.PrepareAsync().Wait();
executor.Transmitter.Send("I'm busy, what do you want to tell me!");

From another program:

var clientProcess = new ClientProcess();
if (clientProcess.Deserialize())
{
    var deserializer = clientProcess.Deserializer;
    var something = deserializer.GetArgument<string>("something");
    
    clientProcess.Transmitter.PrepareAsync().Wait();
    var message = clientProcess.Transmitter.Receive<string>();
    clientProcess.Transmitter.Send("Ahihi, I love you ;)");
}

executor's People

Contributors

sontx avatar

Watchers

 avatar

Forkers

lanicon

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.