All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.diirt.datasource.sample.SetupUtil Maven / Gradle / Ivy

There is a newer version: 3.1.7
Show newest version
/**
 * Copyright (C) 2010-14 diirt developers. See COPYRIGHT.TXT
 * All rights reserved. Use is subject to license terms. See LICENSE.TXT
 */
package org.diirt.datasource.sample;

import org.diirt.datasource.PVManager;
import org.diirt.util.concurrent.Executors;

/**
 *
 * @author carcassi
 */
public class SetupUtil {
    public static void defaultCASetup() {
        System.setProperty("com.cosylab.epics.caj.CAJContext.max_array_bytes", "10000000");
    }
    public static void defaultCASetupForSwing() {
        PVManager.setDefaultNotificationExecutor(Executors.swingEDT());
        defaultCASetup();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy