Пример #1
0
 public void Produce(int simulationFactoryId, int timeInMillis)
 {
     try{
         simulationService.produce(sessionID, simulationFactoryId, timeInMillis);
     }
     catch (EndpointNotFoundException)
     {
         ClientServerEvent(this, new ClientServerEventArgs());
     }
     catch (FaultException)
     {
         ClientServerEvent(this, new ClientServerEventArgs("Fehler auf Server"));
     }
 }
Пример #2
0
 public void produce()
 {
     simulationService.produce(sessionID);
 }