App Engine Java SDK version 1.7.0
[gae.git] / java / src / main / com / google / appengine / tools / appstats / RpcOperationCostManager.java
blob507b9c22339f1928c86fdf045922b39e6365c594
1 // Copyright 2012 Google Inc. All Rights Reserved.
2 package com.google.appengine.tools.appstats;
4 /**
5 * Describes an object that can provide the cost of a {@code BillableOp}.
7 */
8 interface RpcOperationCostManager {
10 /**
11 * Returns the cost of the given operation.
13 long costOf(StatsProtos.BilledOpProto.BilledOp op);