Package frost.storage.perst

Examples of frost.storage.perst.TrackDownloadKeysStorage


      // maybe track download
      if (Core.frostSettings
          .getBoolValue(SettingsClass.TRACK_DOWNLOADS_ENABLED)
          && !downloadItem.isTracked()) {
        TrackDownloadKeysStorage trackDownloadKeysStorage = TrackDownloadKeysStorage
            .inst();
        trackDownloadKeysStorage.storeItem(new TrackDownloadKeys(
            downloadItem.getKey(), downloadItem.getFileName(),
            downloadItem.getAssociatedBoardName(), downloadItem
                .getFileSize(), downloadItem
                .getDownloadFinishedMillis()));
        downloadItem.setTracked(true);
View Full Code Here

TOP

Related Classes of frost.storage.perst.TrackDownloadKeysStorage

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.