Metered
Inheritance: java.lang.Object
public class Metered
Provides methods to set metered key.
In this example, an attempt will be made to set metered public and private key
[C#]
Metered metered = new Metered(); metered.SetMeteredKey(“PublicKey”, “PrivateKey”); [Visual Basic] Dim metered As Metered = New Metered metered.SetMeteredKey(“PublicKey”, “PrivateKey”)
the component jar file:
Metered metered = new Metered(); metered.setMeteredKey(“PublicKey”, “PrivateKey”);
Constructors
Constructor | Description |
---|---|
Metered() |
Methods
Method | Description |
---|---|
getConsumptionCredit() | Gets consumption credit. |
getConsumptionQuantity() | Gets consumption file size. |
resetMeteredKey() | Removes previously setup license. |
setMeteredKey(String publicKey, String privateKey) | Sets metered public and private keys. |
Metered()
public Metered()
getConsumptionCredit()
public static BigDecimal getConsumptionCredit()
Gets consumption credit.
Returns: java.math.BigDecimal - Returns the number of consumed credit points.
getConsumptionQuantity()
public static BigDecimal getConsumptionQuantity()
Gets consumption file size.
Returns: java.math.BigDecimal - Returns the number of consumed bytes.
resetMeteredKey()
public final void resetMeteredKey()
Removes previously setup license.
setMeteredKey(String publicKey, String privateKey)
public final void setMeteredKey(String publicKey, String privateKey)
Sets metered public and private keys.
Parameters:
Parameter | Type | Description |
---|---|---|
publicKey | java.lang.String | The public key. |
privateKey | java.lang.String | The private key. |
If you purchase metered license, this API should be called on application startup, normally, this is enough. However, if metered fails to upload consumption data during 24 hours period, 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. |