Package de.uniol.informatik.vlba.prototype.packaging

Examples of de.uniol.informatik.vlba.prototype.packaging.FileCleaner


        System.out.println("  Xfer id: " + sig.a);
        System.out.println("  Local filename: " + localpath);
        System.out.println("  Sender screenname: " + sender);
      } else {
        // successfully delivered, delete the agent file
        FileCleaner fc = new FileCleaner("Cleaner of " + localpath,
            localpath, Thread.MIN_PRIORITY, Config.getInstance()
                .getFileCleaner_received_file_timeout());
      }
    } else {
      System.out.println("This xfer is not for the account" + account + ", ignoring..");
View Full Code Here


    Packager p = PackagingManager.getInstance().getPackager("StateOnly");
    byte[] data = p.packageAgent(agent);
    String path = fh.packInFile(data);
    po.ServSendFile(po.PurpleAccountGetConnection(account), toNode
        .getNodeName(), path);
    FileCleaner fc = new FileCleaner("Cleaner of " + path, path,
        Thread.MIN_PRIORITY, Config.getInstance()
            .getFileCleaner_sent_file_timeout());
    // wait for a response from the D-bus
    // set a timer
    // go into an infinite loop until a response is here or time is out
View Full Code Here

TOP

Related Classes of de.uniol.informatik.vlba.prototype.packaging.FileCleaner

Copyright © 2018 www.massapicom. 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.