{{theTime}}

Search This Blog

Total Pageviews

ImmutableList Example

private ImmutableList<String> getServerProps(){
      ImmutableList.Builder<String> serverProps = ImmutableList.builder();
      serverProps.add(String.format("Azure", "Yes"));
      serverProps.add(String.format("AWS", "Yes"));
      serverProps.add("DisasterRecovery", "Yes");
   
return serverProps ;
}

No comments:

Saga Design Pattern

The Saga design pattern is a way to manage distributed transactions in a microservices architecture. In a microservices environment, where d...