Metered
Inheritance: java.lang.Object
public class Metered
Provides methods to set metered key.
Examples:
In this example, an attempt will be made to set metered public and private key the component jar file:
Metered matered = new Metered();
matered.setMeteredKey("PublicKey", "PrivateKey");
Shows how to activate a Metered license and track credit/consumption.
// Create a new Metered license, and then print its usage statistics.
Metered metered = new Metered();
metered.setMeteredKey("MyPublicKey", "MyPrivateKey");
System.out.println("Credit before operation: {Metered.GetConsumptionCredit()}");
System.out.println("Consumption quantity before operation: {Metered.GetConsumptionQuantity()}");
// Operate using Aspose.Words, and then print our metered stats again to see how much we spent.
Document doc = new Document(getMyDir() + "Document.docx");
doc.save(getArtifactsDir() + "Metered.Usage.pdf");
// Aspose Metered Licensing mechanism does not send the usage data to purchase server every time,
// you need to use waiting.
Thread.sleep(10000);
System.out.println(MessageFormat.format("Credit after operation: {0}", Metered.getConsumptionCredit()));
System.out.println(MessageFormat.format("Consumption quantity after operation: {0}", Metered.getConsumptionQuantity()));
Constructors
Constructor | Description |
---|---|
Metered() | Initializes a new instance of this class. |
Methods
Method | Description |
---|---|
getConsumptionCredit() | Gets consumption credit |
getConsumptionQuantity() | Gets consumption file size |
getProductName() | Returns Product name |
isMeteredLicensed() | Check whether metered is licensed |
setMeteredKey(String publicKey, String privateKey) | Sets metered public and private key. |
Metered()
public Metered()
Initializes a new instance of this class.
Examples:
Shows how to activate a Metered license and track credit/consumption.
// Create a new Metered license, and then print its usage statistics.
Metered metered = new Metered();
metered.setMeteredKey("MyPublicKey", "MyPrivateKey");
System.out.println("Credit before operation: {Metered.GetConsumptionCredit()}");
System.out.println("Consumption quantity before operation: {Metered.GetConsumptionQuantity()}");
// Operate using Aspose.Words, and then print our metered stats again to see how much we spent.
Document doc = new Document(getMyDir() + "Document.docx");
doc.save(getArtifactsDir() + "Metered.Usage.pdf");
// Aspose Metered Licensing mechanism does not send the usage data to purchase server every time,
// you need to use waiting.
Thread.sleep(10000);
System.out.println(MessageFormat.format("Credit after operation: {0}", Metered.getConsumptionCredit()));
System.out.println(MessageFormat.format("Consumption quantity after operation: {0}", Metered.getConsumptionQuantity()));
getConsumptionCredit()
public static BigDecimal getConsumptionCredit()
Gets consumption credit
Examples:
Shows how to activate a Metered license and track credit/consumption.
// Create a new Metered license, and then print its usage statistics.
Metered metered = new Metered();
metered.setMeteredKey("MyPublicKey", "MyPrivateKey");
System.out.println("Credit before operation: {Metered.GetConsumptionCredit()}");
System.out.println("Consumption quantity before operation: {Metered.GetConsumptionQuantity()}");
// Operate using Aspose.Words, and then print our metered stats again to see how much we spent.
Document doc = new Document(getMyDir() + "Document.docx");
doc.save(getArtifactsDir() + "Metered.Usage.pdf");
// Aspose Metered Licensing mechanism does not send the usage data to purchase server every time,
// you need to use waiting.
Thread.sleep(10000);
System.out.println(MessageFormat.format("Credit after operation: {0}", Metered.getConsumptionCredit()));
System.out.println(MessageFormat.format("Consumption quantity after operation: {0}", Metered.getConsumptionQuantity()));
Returns: java.math.BigDecimal - consumption quantity
getConsumptionQuantity()
public static BigDecimal getConsumptionQuantity()
Gets consumption file size
Examples:
Shows how to activate a Metered license and track credit/consumption.
// Create a new Metered license, and then print its usage statistics.
Metered metered = new Metered();
metered.setMeteredKey("MyPublicKey", "MyPrivateKey");
System.out.println("Credit before operation: {Metered.GetConsumptionCredit()}");
System.out.println("Consumption quantity before operation: {Metered.GetConsumptionQuantity()}");
// Operate using Aspose.Words, and then print our metered stats again to see how much we spent.
Document doc = new Document(getMyDir() + "Document.docx");
doc.save(getArtifactsDir() + "Metered.Usage.pdf");
// Aspose Metered Licensing mechanism does not send the usage data to purchase server every time,
// you need to use waiting.
Thread.sleep(10000);
System.out.println(MessageFormat.format("Credit after operation: {0}", Metered.getConsumptionCredit()));
System.out.println(MessageFormat.format("Consumption quantity after operation: {0}", Metered.getConsumptionQuantity()));
Returns: java.math.BigDecimal - consumption quantity
getProductName()
public String getProductName()
Returns Product name
Returns: java.lang.String - Product name
isMeteredLicensed()
public static boolean isMeteredLicensed()
Check whether metered is licensed
Returns: boolean - True or false
setMeteredKey(String publicKey, String privateKey)
public void setMeteredKey(String publicKey, String privateKey)
Sets 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.
Examples:
Shows how to activate a Metered license and track credit/consumption.
// Create a new Metered license, and then print its usage statistics.
Metered metered = new Metered();
metered.setMeteredKey("MyPublicKey", "MyPrivateKey");
System.out.println("Credit before operation: {Metered.GetConsumptionCredit()}");
System.out.println("Consumption quantity before operation: {Metered.GetConsumptionQuantity()}");
// Operate using Aspose.Words, and then print our metered stats again to see how much we spent.
Document doc = new Document(getMyDir() + "Document.docx");
doc.save(getArtifactsDir() + "Metered.Usage.pdf");
// Aspose Metered Licensing mechanism does not send the usage data to purchase server every time,
// you need to use waiting.
Thread.sleep(10000);
System.out.println(MessageFormat.format("Credit after operation: {0}", Metered.getConsumptionCredit()));
System.out.println(MessageFormat.format("Consumption quantity after operation: {0}", Metered.getConsumptionQuantity()));
Parameters:
Parameter | Type | Description |
---|---|---|
publicKey | java.lang.String | public key |
privateKey | java.lang.String | private key |