Skip to content

Latest commit

 

History

History
 
 

core

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Azure Core shared library for Java

Build Documentation

Azure Core provides shared primitives, abstractions, and helpers for modern Java Azure SDK client libraries. These libraries follow the Azure SDK Design Guidelines for Java and can be easily identified by package names starting with com.azure and module names starting with azure-, e.g. com.azure.storage.blobs would be found within the /sdk/storage/azure-storage-blob directory. A more complete list of client libraries using Azure Core can be found here.

Azure Core allows client libraries to expose common functionality in a consistent fashion, so that once you learn how to use these APIs in one client library, you will know how to use them in other client libraries.

The main shared concepts of Azure Core (and therefore all Azure client libraries using Azure Core) include:

  • Configuring service clients, e.g. configuring retries, logging, etc.
  • Accessing HTTP response details (Response<T>).
  • Calling long running operations (Poller<T>).
  • Paging and asynchronous streams (PagedFlux<T>).
  • Exceptions for reporting errors from service requests in a consistent fashion.
  • Abstractions for representing Azure SDK credentials.

Sub-projects

Azure Core is split into a number of sub-components:

For documentation on using Azure Core, refer to the https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/core/azure-core readme.

Impressions