Package com.asakusafw.windgate.core.session

Examples of com.asakusafw.windgate.core.session.SessionMirror.abort()


     * @throws Exception if failed
     */
    @Test
    public void abort() throws Exception {
        SessionMirror session = provider.create("testing");
        session.abort();
        SessionMirror reopen = provider.create("testing");
        reopen.close();
    }

    /**
 
View Full Code Here


    @Override
    public void delete(String id) throws IOException {
        assert id != null;
        LOG.debug("Deleting session: {}", id);
        SessionMirror session = attach(id, false, true);
        session.abort();
    }

    private SessionMirror attach(String id, boolean create, boolean force) throws IOException {
        assert id != null;
        boolean completed = false;
View Full Code Here

                        targetSessionId));
            }
            WGLOG.info("I01004",
                    targetSessionId,
                    profile.getName());
            session.abort();
            return true;
        } finally {
            try {
                session.close();
            } catch (IOException e) {
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.