Examples of TrackDownloadKeysStorage


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
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.