#region CPL License
/*
Nuclex Framework
Copyright (C) 2002-2009 Nuclex Development Labs
This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as
published by the IBM Corporation; either version 1.0 of the
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
IBM Common Public License for more details.
You should have received a copy of the IBM Common Public
License along with this library
*/
#endregion
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using Nuclex.Support.Collections;
namespace Nuclex.Support.Tracking {
/// Collection of transactions with a weighting value
/// Type of transactions to manage
///
///
/// This collection is exposed as a read-only collection to the user that
/// stores WeightedTransactions. Internally, it merely wraps a collection of
/// an internal type used to keep track of the individual transaction's
/// progress in the TransactionGroup and OperationQueue classes.
///
///
/// It is read-only because the design requires a transaction to only ever finish
/// once. If it was possible eg. to add items after a TransactionGroup had signalled
/// itself as being finished, it would be moved into an unfinished state again.
/// Also, an empty TransactionGroup is, by definition, finished (simply because
/// there is no work to do) - unless the contents of the group are passed to the
/// TransactionGroup's constructor and never modified at all, the design would be
/// violated as soon as an instance of the TransactionGroup or OperationQueue
/// classes was created.
///
///
internal class WeightedTransactionWrapperCollection :
TransformingReadOnlyCollection<
ObservedWeightedTransaction, WeightedTransaction
>
where TransactionType : Transaction {
/// Initializes a new weighted transaction collection wrapper
/// Items to be exposed as weighted transactions
internal WeightedTransactionWrapperCollection(
IList> items
)
: base(items) { }
/// Transforms an item into the exposed type
/// Item to be transformed
/// The transformed item
///
/// This method is used to transform an item in the wrapped collection into
/// the exposed item type whenever the user accesses an item. Expect it to
/// be called frequently, because the TransformingReadOnlyCollection does
/// not cache otherwise store the transformed items.
///
protected override WeightedTransaction Transform(
ObservedWeightedTransaction item
) {
return item.WeightedTransaction;
}
}
} // namespace Nuclex.Support.Tracking