Package edu.brown.benchmark.auctionmark.util

Examples of edu.brown.benchmark.auctionmark.util.LoaderItemInfo


            short numWatches = (short)p.getSecond().nextInt();
           
            // Create the ItemInfo object that we will use to cache the local data
            // for this item. This will get garbage collected once all the derivative
            // tables are done with it.
            LoaderItemInfo itemInfo = new LoaderItemInfo(itemId, endDate, numBids);
            itemInfo.sellerId = seller_id;
            itemInfo.startDate = endDate;
            itemInfo.initialPrice = profile.randomInitialPrice.nextInt();
            assert(itemInfo.initialPrice > 0) : "Invalid initial price for " + itemId;
            itemInfo.numImages = (short) profile.randomNumImages.nextInt();
View Full Code Here


            } else if (bid.seller_feedback && bid.buyer_feedback == false) {
                is_buyer = false;
            } else if (remaining > 1) {
                is_buyer = true;
            }
            LoaderItemInfo itemInfo = bid.getLoaderItemInfo();
           
            // UF_ID
            this.row[col++] = this.count;
            // UF_I_ID
            this.row[col++] = itemInfo.itemId;
View Full Code Here

TOP

Related Classes of edu.brown.benchmark.auctionmark.util.LoaderItemInfo

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.