Examples of HBCIThreadFactory


Examples of org.kapott.hbci.concurrent.HBCIThreadFactory

        // nur "notd�rftig" zu initialisieren. Leere Konfiguration, und keine Callback-Unterst�tzung.
        HBCIUtils.init(new Properties(), new HBCICallbackUnsupported());

        // Die Verwendung der HBCIThreadFactory ist f�r die korrekte Funktionsweise von HBCI4Java zwingend erforderlich
        // (Alternativ m�sste manuell sichergestellt werden, dass jeder Thread in einer eigenen Thread-Gruppe l�uft.)
        ExecutorService executor = Executors.newCachedThreadPool(new HBCIThreadFactory());

        // Einstellungen f�r die Aufgabe erstellen
        Properties properties = HBCIUtils.loadPropertiesFile(new FileSystemClassLoader(),"/home/stefan.palme/temp/a.props");
        HBCICallback callback = new MyHBCICallback();
        HBCIPassportFactory passportFactory = new DefaultHBCIPassportFactory((Object) "Passport f�r Kontoauszugs-Demo");
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.