Package co.paralleluniverse.common.monitoring

Source Code of co.paralleluniverse.common.monitoring.ForkJoinPoolMonitor

/*
* Copyright (c) 2011-2014, Parallel Universe Software Co. All rights reserved.
*
* This program and the accompanying materials are dual-licensed under
* either the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation
*   or (per the licensee's choosing)
* under the terms of the GNU Lesser General Public License version 3.0
* as published by the Free Software Foundation.
*/
package co.paralleluniverse.common.monitoring;

import java.lang.ref.WeakReference;
import jsr166e.ForkJoinPool;

/**
*
* @author pron
*/
public abstract class ForkJoinPoolMonitor {
    public static enum Status {
        ACTIVE, QUIESCENT, SHUTDOWN, TERMINATING, TERMINATED
    }
    private final WeakReference<ForkJoinPool> fjPool;

    public ForkJoinPoolMonitor(String name, ForkJoinPool fjPool) {
        this.fjPool = fjPool != null ? new WeakReference<ForkJoinPool>(fjPool) : null;
    }

    public void unregister() {
    }

    protected ForkJoinPool fjPool() {
        final ForkJoinPool fjp = this.fjPool.get();
        return fjp;
    }
}
TOP

Related Classes of co.paralleluniverse.common.monitoring.ForkJoinPoolMonitor

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.