Examples of exit()

  • com.l2jfrozen.gameserver.skills.effects.EffectCharge.exit()
  • com.lightcrafts.ui.mode.Mode.exit()
  • com.springsource.insight.intercept.trace.FrameBuilder.exit()
  • com.springsource.insight.intercept.trace.SimpleFrameBuilder.exit()
  • com.sun.cldc.isolate.Isolate.exit()
    Requests normal termination of this Isolate. Invocation of this method is equivalent to causing the isolate to invoke {@link java.lang.Runtime#exit(int)}. If this method invocation is, in fact, the cause of the isolate's termination, the status supplied will be the isolate's termination status.

    No exception is thrown if this isolate is already terminated. Even if {@link #isTerminated()} returns false priorto invoking exit, an invocation of exit may occur after the isolate exits on its own or is terminated by another isolate. In these cases, the actual exit code reported by the isolate may be different from status.

    If this isolate is not yet started, it will be marked as already terminated. A subsequent invocation to {@link #start()} wouldresult in an IsolateStartupException.

    If this isolate is suspended, it will be terminated without being resumed. @param status Termination status. By convention, a nonzero status code indicates abnormal termination.

  • com.sun.corba.se.spi.oa.ObjectAdapter.exit()
    exit must be called after each request has been completed. If enter is called, there must always be a corresponding exit.
  • com.sun.jdi.VirtualMachine.exit()
    Causes the mirrored VM to terminate with the given error code. All resources associated with this VirtualMachine are freed. If the mirrored VM is remote, the communication channel to it will be closed. Resources originating in this VirtualMachine (ObjectReferences, ReferenceTypes, etc.) will become invalid.

    Threads running in the mirrored VM are abruptly terminated. A thread death exception is not thrown and finally blocks are not run. @param exitCode the exit code for the target VM. On some platforms,the exit code might be truncated, for example, to the lower order 8 bits. @throws VMCannotBeModifiedException if the VirtualMachine is read-only - see {@link VirtualMachine#canBeModified()}.

  • com.tulskiy.musique.system.Application.exit()
  • javax.isolate.Isolate.exit()
    Request normal termination of this isolate. @param status
  • javolution.context.ConcurrentContext.exit()
    Exits the current concurrent context. @throws ClassCastException if the context is not a concurrent context.
  • jsynoptic.base.Plugin.exit()
    Some plugins need a particular treatment during Jsynoptic closing For instance when an external process was created in a plugin, it needs to be destroyed
  • l2p.gameserver.model.L2Effect.exit()
    Stop the L2Effect task and send Server->Client update packet.

    Actions :

  • Cancel the effect in the the abnormal effect map of the L2Character
  • Stop the task of the L2Effect, remove it and update client magic icon


  • lineage2.gameserver.model.Effect.exit()
    Method exit.
  • net.sf.l2j.gameserver.model.L2Effect.exit()
    Stop the L2Effect task and send Server->Client update packet.

    Actions :

  • Cancel the effect in the the abnormal effect map of the L2Character
  • Stop the task of the L2Effect, remove it and update client magic icone


  • net.sf.l2j.gameserver.skills.effects.EffectCharge.exit()
  • org.apache.commons.javaflow.Continuation.exit()
  • org.apache.geronimo.connector.outbound.ConnectionTrackingInterceptor.exit()
  • org.apache.geronimo.connector.outbound.connectiontracking.TrackedConnectionAssociator.exit()
  • org.apache.harmony.jretools.policytool.control.Controller.exit()
    Exits from the program.
    There might be unsaved changes in which case confirmation will be asked.
  • org.apache.harmony.tools.policytool.control.Controller.exit()
    Exits from the program.
    There might be unsaved changes in which case confirmation will be asked.
  • org.apache.jmeter.engine.JMeterEngine.exit()
  • org.apache.maven.SessionScope.exit()
  • org.apache.maven.execution.scope.internal.MojoExecutionScope.exit()
  • org.apache.xmlbeans.impl.common.XmlLocale.exit()
  • org.codehaus.aspectwerkz.cflow.AbstractCflowSystemAspect.exit()
    after finally advice when exiting this cflow
  • org.elasticsearch.action.admin.cluster.node.shutdown.NodesShutdownRequest.exit()
    Should the JVM be exited as well or not. Defaults to true.
  • org.ggf.drmaa.Session.exit()
    Disengage from the DRM and allow the DRMAA implementation to perform any necessary internal cleanup. This routine ends the current DRMAA session but doesn't affect any jobs which have already been submitted (e.g., queued and running jobs remain queued and running). exit() should be called only once, by only one of the threads. Additional calls to exit() beyond the first will throw a NoActiveSessionException. @throws DrmaaException May be one of the following:
  • org.gudy.azureus2.core3.util.AEMonitor.exit()
  • org.infinispan.test.concurrent.StateSequencer.exit()
    Exit a state and signal the waiters on its dependent states.
  • org.jboss.bootstrap.spi.ServerProcess.exit()
    Shutdown the server, the JVM and run shutdown hooks. @param exitcode The exit code returned to the operating system.
  • org.jnode.vm.scheduler.Monitor.exit()
    Giveup this monitor. @throws org.vmmagic.pragma.UninterruptiblePragma
  • org.jpacman.framework.ui.IPacmanInteraction.exit()
    Exit the game.
  • org.mozilla.javascript.Context.exit()
    Exit a block of code requiring a Context. Calling exit() will remove the association between the current thread and a Context if the prior call to enter() on this thread newly associated a Context with this thread. Once the current thread no longer has an associated Context, it cannot be used to execute JavaScript until it is again associated with a Context. @see org.mozilla.javascript.Context#enter() @see #call(ContextAction) @see ContextFactory#call(ContextAction)
  • org.renjin.eval.Context.exit()
    Invokes any on.exit expressions that have been set.
  • org.slf4j.ext.XLogger.exit()
    Log method exit
  • sun.awt.datatransfer.ToolkitThreadBlockedHandler.exit()

  • Examples of org.apache.geronimo.connector.outbound.connectiontracking.TrackedConnectionAssociator.exit()

            // reset old connector context
            TrackedConnectionAssociator trackedConnectionAssociator = ejbDeployment.getTrackedConnectionAssociator();
            if (trackedConnectionAssociator != null) {
                try {
                    trackedConnectionAssociator.exit(geronimoCallContext.oldConnectorContext);
                } catch (ResourceException e) {
                    log.error("Error while exiting TrackedConnectionAssociator");
                }
            }
        }
    View Full Code Here

    Examples of org.apache.harmony.jretools.policytool.control.Controller.exit()

            setLocation( Consts.MAIN_FRAME_START_POS_X, Consts.MAIN_FRAME_START_POS_X );
            setSize( Consts.MAIN_FRAME_WIDTH, Consts.MAIN_FRAME_HEIGHT );
            setDefaultCloseOperation( DO_NOTHING_ON_CLOSE );
            addWindowListener( new WindowAdapter() {
                public void windowClosing( final WindowEvent we ) {
                    controller.exit();
                }
            } );
        }

        /**
     
    View Full Code Here

    Examples of org.apache.harmony.tools.policytool.control.Controller.exit()

            setLocation( Consts.MAIN_FRAME_START_POS_X, Consts.MAIN_FRAME_START_POS_X );
            setSize( Consts.MAIN_FRAME_WIDTH, Consts.MAIN_FRAME_HEIGHT );
            setDefaultCloseOperation( DO_NOTHING_ON_CLOSE );
            addWindowListener( new WindowAdapter() {
                public void windowClosing( final WindowEvent we ) {
                    controller.exit();
                }
            } );
        }

        /**
     
    View Full Code Here

    Examples of org.apache.jmeter.engine.JMeterEngine.exit()

                if (engines!=null){ // it will be null unless remoteStop = true
                    println("Exitting remote servers");
                    Iterator<JMeterEngine> it = engines.iterator();
                    while(it.hasNext()){
                        JMeterEngine e = it.next();
                        e.exit();
                    }
                }
                try {
                    Thread.sleep(5000); // Allow listeners to close files
                } catch (InterruptedException ignored) {
    View Full Code Here

    Examples of org.apache.jmeter.engine.JMeterEngine.exit()

      private void doRemoteExit(String name)
      {
        JMeterEngine engine = (JMeterEngine) remoteEngines.get(name);
        if (engine == null) return;
        //GuiPackage.getInstance().getMainFrame().showStoppingMessage(name);
        engine.exit();
      }

        /**
         * Starts a remote testing engine
         *
     
    View Full Code Here

    Examples of org.apache.maven.SessionScope.exit()

                    executionScope.exit();
                }
            }
            finally
            {
                sessionScope.exit();
            }
        }

    }
    View Full Code Here

    Examples of org.apache.maven.execution.scope.internal.MojoExecutionScope.exit()

                        listener.afterMojoExecutionSuccess( event );
                    }
                }
                finally
                {
                    executionScope.exit();
                }
            }
            finally
            {
                sessionScope.exit();
    View Full Code Here

    Examples of org.apache.xmlbeans.impl.common.XmlLocale.exit()

            // Note that new_cursor does not really need sync ....

            XmlLocale l = getXmlLocale();

            if (l.noSync())         { l.enter(); try { return get_store().new_cursor(); } finally { l.exit(); } }
            else synchronized ( l ) { l.enter(); try { return get_store().new_cursor(); } finally { l.exit(); } }

        }

        public abstract SchemaType schemaType();
    View Full Code Here

    Examples of org.apache.xmlbeans.impl.common.XmlLocale.exit()

            // Note that new_cursor does not really need sync ....

            XmlLocale l = getXmlLocale();

            if (l.noSync())         { l.enter(); try { return get_store().new_cursor(); } finally { l.exit(); } }
            else synchronized ( l ) { l.enter(); try { return get_store().new_cursor(); } finally { l.exit(); } }

        }

        public abstract SchemaType schemaType();
    View Full Code Here

    Examples of org.codehaus.aspectwerkz.cflow.AbstractCflowSystemAspect.exit()

                    assertTrue(cflow.inCflow());
                    assertTrue( ! cflow.inCflowBelow());
                    cflow.enter();
                    assertTrue(cflow.inCflow());
                    assertFalse( ! cflow.inCflowBelow());
                    cflow.exit();
                    // leave the cflow in "inCflow" state is in this thread
                }
            };
            t.start();
            System.out.println(Thread.currentThread());
    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.