Package com.aspose.threed
Class Metered
- java.lang.Object
-
- com.aspose.threed.Metered
-
public class Metered extends java.lang.ObjectProvides methods to set metered key.
-
-
Constructor Summary
Constructors Constructor Description Metered()Initializes a new instance of this class.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static doublegetConsumptionCredit()Gets consumption creditstatic doublegetConsumptionQuantity()Gets consumption file sizevoidsetMeteredKey(java.lang.String publicKey, java.lang.String privateKey)Sets metered public and private key.
-
-
-
Method Detail
-
setMeteredKey
public void setMeteredKey(java.lang.String publicKey, java.lang.String privateKey) throws java.lang.ExceptionSets metered public and private key. If you purchase metered license, when start application, this API should be called, normally, this is enough. However, if always fail to upload consumption data and exceed 24 hours, the license will be set to evaluation status, to avoid such case, you should regularly check the license status, if it is evaluation status, call this API again.- Parameters:
publicKey- public keyprivateKey- private key- Throws:
java.lang.Exception
-
getConsumptionQuantity
public static double getConsumptionQuantity() throws java.lang.ExceptionGets consumption file size- Returns:
- consumption quantity
- Throws:
java.lang.Exception
-
getConsumptionCredit
public static double getConsumptionCredit() throws java.lang.ExceptionGets consumption credit- Returns:
- consumption quantity
- Throws:
java.lang.Exception
-
-