Examples of stop()


Examples of org.gradle.messaging.remote.internal.MessagingServices.stop()

            } finally {
                clientConnection.stop();
            }
        } finally {
            LOGGER.debug("Stopping client connection.");
            messagingServices.stop();
        }
    }

    MessagingServices createClient() {
        return new MessagingServices(getClass().getClassLoader());
View Full Code Here

Examples of org.graylog2.plugin.inputs.MessageInput.stop()

            LOG.info("Attempting to close input <{}> [{}].", input.getUniqueReadableId(), input.getName());

            Stopwatch s = Stopwatch.createStarted();
            try {
                input.stop();

                LOG.info("Input <{}> closed. Took [{}ms]", input.getUniqueReadableId(), s.elapsed(TimeUnit.MILLISECONDS));
            } catch (Exception e) {
                LOG.error("Unable to stop input <{}> [{}]: " + e.getMessage(), input.getUniqueReadableId(), input.getName());
            } finally {
View Full Code Here

Examples of org.gridgain.client.GridClientTestRestServer.stop()

    @Override protected void afterTest() throws Exception {
        for (int i = 0; i < srvs.length; i++) {
            GridClientTestRestServer srv = srvs[i];

            if (srv != null)
                srv.stop();

            srvs[i] = null;
        }

        super.afterTest();
View Full Code Here

Examples of org.gridkit.coherence.util.classloader.Isolate.stop()

    Isolate node = new Isolate("Remote-2", "org.gridkit", "com.tangosol");
    node.start();
    node.submit(NodeActions.Start.class, "auto-pof-cache-config-server.xml");
    node.submit(GetAll.class);
    node.submit(NodeActions.Stop.class);
    node.stop();   
   
    Assert.assertEquals("ok", cache.get("ok"));
  }
 
  public static class GetAll implements Runnable {
View Full Code Here

Examples of org.gstreamer.Pipeline.stop()

        pipe.play();

        Gst.main();

        pipe.stop();
    }
}
View Full Code Here

Examples of org.gstreamer.elements.PlayBin2.stop()

        // Start the pipeline playing
        playbin.play();
        Gst.main();
       
        // Clean up (gstreamer requires elements to be in State.NULL before disposal)
        playbin.stop();
    }
}
View Full Code Here

Examples of org.gudy.azureus2.core3.tracker.client.impl.bt.TRTrackerBTAnnouncerImpl.stop()

         
          an.cloneFrom( announcer );
         
          an.setTrackerURL( url );
         
          an.stop( false );
         
          an.destroy();
         
        }catch( Throwable e ){
         
View Full Code Here

Examples of org.gudy.azureus2.core3.tracker.host.TRHostTorrent.stop()

  private void stopSelectedTorrents() {
    tv.runForSelectedRows(new TableGroupRowRunner() {
      public void run(TableRowCore row) {
        TRHostTorrent  torrent = (TRHostTorrent)row.getDataSource(true);
        if (torrent.getStatus() == TRHostTorrent.TS_STARTED)
          torrent.stop();
      }
    });
  }
 
  private void startSelectedTorrents() {
View Full Code Here

Examples of org.gudy.azureus2.plugins.download.Download.stop()

            }else if ( dl_state != Download.ST_STOPPED ){
             
              if ( do_stop ){
               
                try{
                  download.stop();
                }catch( Throwable e ){
                }
               
                try{
                  tracker_torrent.stop();
View Full Code Here

Examples of org.gudy.azureus2.plugins.tracker.TrackerTorrent.stop()

                  download.stop();
                }catch( Throwable e ){
                }
               
                try{
                  tracker_torrent.stop();
                }catch( Throwable e ){
                }
              }
             
            }else{
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.