Examples of stop()


Examples of com.kellerkindt.scs.interfaces.ShopHandler.stop()

           
            Messaging.send(cs, Term.MESSAGE_RELOADING.get("SCS"));
           
            ShowCaseStandalone.slog(Level.INFO, "Reloading SCS (command from " + cs.getName());
            ShowCaseStandalone.slog(Level.INFO, "Stopping shop update task.");
            sh.stop();
           
            ShowCaseStandalone.slog(Level.INFO, "Removing display items.");
        sh.hideAll();
       
        ShowCaseStandalone.slog(Level.INFO, "Writing changes to disk");
View Full Code Here

Examples of com.knowgate.debug.Chronometer.stop()

      }

      oFldr.fetch(aMsgsObj, oFtchPrfl);
     
      if (DebugFile.trace) {
        DebugFile.writeln(String.valueOf(iTotalCount)+" headers fetched in "+String.valueOf(oChMeter.stop()/1000l)+" seconds");
        oChMeter.start();
      }
       
      aMsgsXml = new String[iTotalCount];
      for (int m=0; m<iTotalCount; m++) {
View Full Code Here

Examples of com.kurento.kmf.jsonrpcconnector.KeepAliveManager.stop()

    long duration = controller.waitForEvents(3);

    Assert.assertTrue(duration + MARGIN_TIME > KEEPALIVE_INTERVAL_TIME
        * NUM_KEEP_ALIVES);

    keepAliveManager.stop();
  }

  @Test
  public void oneMediaPipelineTest() throws InterruptedException {

View Full Code Here

Examples of com.kurento.kmf.media.PlayerEndpoint.stop()

    // Stop and release media elements
    recorderEP.stop();
    playerRed.stop();
    playerGreen.stop();
    playerBlue.stop();
    recorderEP.release();
    playerRed.release();
    playerGreen.release();
    playerBlue.release();
View Full Code Here

Examples of com.kurento.kmf.media.RecorderEndpoint.stop()

  @Override
  public void onSessionTerminated(HttpRecorderSession contentSession,
      int code, String reason) throws Exception {
    RecorderEndpoint recorderEndPoint = (RecorderEndpoint) contentSession
        .getAttribute("recorder");
    recorderEndPoint.stop();
    super.onSessionTerminated(contentSession, code, reason);
  }

  protected abstract String getUri();
}
View Full Code Here

Examples of com.kurento.kmf.repository.RepositoryHttpRecorder.stop()

    RepositoryHttpRecorder recorder = repositoryItem
        .createRepositoryHttpRecorder();

    uploadFileWithMultiparts(recorder.getURL(), fileToUpload);

    recorder.stop();

    return id;
  }

  private ResponseEntity<String> postWithRetries(String uploadURL,
View Full Code Here

Examples of com.kurento.kmf.test.services.RemoteHost.stop()

          }
        } catch (Exception e) {
          log.debug("Invalid credentials to access node {} ",
              nodeCandidate);
        } finally {
          remoteHost.stop();
        }

      } else {
        log.debug("Node {} seems to be down", nodeCandidate);
      }
View Full Code Here

Examples of com.l2jfrozen.gameserver.ai.L2ControllableMobAI.stop()

      {
        continue;
      }

      L2ControllableMobAI ai = (L2ControllableMobAI) mobInst.getAI();
      ai.stop();
      ai = null;
    }
  }

  public void returnGroup(L2Character activeChar)
View Full Code Here

Examples of com.linkedin.databus.client.DatabusSourcesConnection.stop()

      // asserts
      Assert.assertEquals(countingConsumer.getNumDataEvents(), 2);
      Assert.assertEquals(countingConsumer.getNumWindows(), 2);
      Assert.assertEquals(countingConsumer.getNumDataEvents(DbusEventFactory.DBUS_EVENT_V1),2);
      log.info("shutdown first client");
      clientConn.stop();
      cr.shutdown();
      TestUtil.sleep(1000);
      cr = null;

View Full Code Here

Examples of com.linkedin.databus.core.test.DbusEventBufferConsumer.stop()

    LOG.info("runConstEventsReaderWriter(): waiting up to " + (consumerWaitms/1000) + " sec for consumer thread to terminate");
    tConsumer.join(consumerWaitms);
    //stop the consumer thread; may or may not have got all events;
    dumpEmitterWriterReaderConsumerState(eventProducer, writer, reader, consumer, emitterStats, streamStats, clientStats, dstTestEvents, prodEventBuffer, consEventBuffer);
    LOG.info("runConstEventsReaderWriter(): signalling consumer to stop");
    consumer.stop();
    dumpEmitterWriterReaderConsumerState(eventProducer, writer, reader, consumer, emitterStats, streamStats, clientStats, dstTestEvents, prodEventBuffer, consEventBuffer);
    LOG.info("runConstEventsReaderWriter(): signalling reader to stop");
    reader.stop();
    dumpEmitterWriterReaderConsumerState(eventProducer, writer, reader, consumer, emitterStats, streamStats, clientStats, dstTestEvents, prodEventBuffer, consEventBuffer);
    LOG.info("runConstEventsReaderWriter(): all stop.");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.