Package org.jclouds.elb.features

Examples of org.jclouds.elb.features.LoadBalancerApi


   }

   @Override
   protected Function<Object, IterableWithMarker<LoadBalancer>> markerToNextForArg0(Optional<Object> arg0) {
      final String region = arg0.isPresent() ? arg0.get().toString() : null;
      final LoadBalancerApi loadBalancerApi = api.getLoadBalancerApiForRegion(region);
      return new Function<Object, IterableWithMarker<LoadBalancer>>() {

         @Override
         public IterableWithMarker<LoadBalancer> apply(Object input) {
            return loadBalancerApi.list(ListLoadBalancersOptions.Builder.afterMarker(input));
         }

         @Override
         public String toString() {
            return "listLoadBalancersInRegion(" + region + ")";
View Full Code Here


   }

   @Override
   protected Function<Object, IterableWithMarker<LoadBalancer>> markerToNextForArg0(Optional<Object> arg0) {
      final String region = arg0.isPresent() ? arg0.get().toString() : null;
      final LoadBalancerApi loadBalancerApi = api.getLoadBalancerApiForRegion(region);
      return new Function<Object, IterableWithMarker<LoadBalancer>>() {

         @Override
         public IterableWithMarker<LoadBalancer> apply(Object input) {
            return loadBalancerApi.list(ListLoadBalancersOptions.Builder.afterMarker(input));
         }

         @Override
         public String toString() {
            return "listLoadBalancersInRegion(" + region + ")";
View Full Code Here

TOP

Related Classes of org.jclouds.elb.features.LoadBalancerApi

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.