Package org.mule.example.sla

Examples of org.mule.example.sla.Ticket


    }

    public void testSla() throws Exception
    {
        MuleClient client = new MuleClient();
        client.dispatch("vm://incoming.tickets", new Ticket("Customer A"), null);
        client.dispatch("vm://incoming.tickets", new Ticket("Customer B"), null);
        client.dispatch("vm://incoming.tickets", new Ticket("Customer C"), null);
        client.dispatch("vm://incoming.tickets", new Ticket("Customer D"), null);
       
        Thread.sleep(1000000);
    }
View Full Code Here

TOP

Related Classes of org.mule.example.sla.Ticket

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.