com.microsoft.azure.management.eventhub.implementation.EventHubConsumerGroupsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-eventhub Show documentation
Show all versions of azure-mgmt-eventhub Show documentation
This package contains Microsoft EventHub Management SDK. This package has been deprecated. A replacement package com.azure.resourcemanager:azure-resourcemanager-eventhubs is available as of 31-March-2022. We strongly encourage you to upgrade to continue receiving updates. See Migration Guide https://aka.ms/java-track2-migration-guide for guidance on upgrading. Refer to our deprecation policy https://azure.github.io/azure-sdk/policies_support.html for more details.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.management.eventhub.implementation;
import com.microsoft.azure.Page;
import com.microsoft.azure.PagedList;
import com.microsoft.azure.management.apigeneration.LangDefinition;
import com.microsoft.azure.management.eventhub.EventHubConsumerGroup;
import com.microsoft.azure.management.eventhub.EventHubConsumerGroups;
import com.microsoft.azure.management.resources.fluentcore.arm.ResourceId;
import com.microsoft.azure.management.resources.fluentcore.model.implementation.WrapperImpl;
import com.microsoft.azure.management.resources.fluentcore.utils.PagedListConverter;
import com.microsoft.rest.ServiceCallback;
import com.microsoft.rest.ServiceFuture;
import rx.Completable;
import rx.Observable;
import rx.functions.Func1;
import java.util.Objects;
/**
* Implementation for {@link EventHubConsumerGroups}.
*/
@LangDefinition
class EventHubConsumerGroupsImpl extends WrapperImpl implements EventHubConsumerGroups {
private final EventHubManager manager;
protected EventHubConsumerGroupsImpl(EventHubManager manager) {
super(manager.inner().consumerGroups());
this.manager = manager;
}
@Override
public EventHubManager manager() {
return this.manager;
}
@Override
public EventHubConsumerGroupImpl define(String name) {
return new EventHubConsumerGroupImpl(name, this.manager);
}
@Override
public EventHubConsumerGroup getById(String id) {
return getByIdAsync(id).toBlocking().last();
}
@Override
public Observable getByIdAsync(String id) {
Objects.requireNonNull(id);
ResourceId resourceId = ResourceId.fromString(id);
return getByNameAsync(resourceId.resourceGroupName(),
resourceId.parent().parent().name(),
resourceId.parent().name(),
resourceId.name());
}
@Override
public ServiceFuture getByIdAsync(String id, ServiceCallback callback) {
return ServiceFuture.fromBody(getByIdAsync(id), callback);
}
@Override
public Observable getByNameAsync(String resourceGroupName, String namespaceName, String eventHubName, String name) {
return this.inner().getAsync(resourceGroupName,
namespaceName,
eventHubName,
name)
.map(new Func1() {
@Override
public EventHubConsumerGroup call(ConsumerGroupInner inner) {
if (inner == null) {
return null;
} else {
return wrapModel(inner);
}
}
});
}
@Override
public EventHubConsumerGroup getByName(String resourceGroupName, String namespaceName, String eventHubName, String name) {
return getByNameAsync(resourceGroupName, namespaceName, eventHubName, name).toBlocking().last();
}
@Override
public PagedList listByEventHub(String resourceGroupName, String namespaceName, String eventHubName) {
return (new PagedListConverter() {
@Override
public Observable typeConvertAsync(final ConsumerGroupInner inner) {
return Observable.just(wrapModel(inner));
}
}).convert(inner().listByEventHub(resourceGroupName, namespaceName, eventHubName));
}
@Override
public Observable listByEventHubAsync(String resourceGroupName, String namespaceName, String eventHubName) {
return this.inner().listByEventHubAsync(resourceGroupName, namespaceName, eventHubName)
.flatMapIterable(new Func1, Iterable>() {
@Override
public Iterable call(Page page) {
return page.items();
}
})
.map(new Func1() {
@Override
public EventHubConsumerGroup call(ConsumerGroupInner inner) {
return wrapModel(inner);
}
});
}
@Override
public void deleteById(String id) {
deleteByIdAsync(id).await();
}
@Override
public ServiceFuture deleteByIdAsync(String id, ServiceCallback callback) {
return ServiceFuture.fromBody(deleteByIdAsync(id), callback);
}
@Override
public Completable deleteByIdAsync(String id) {
Objects.requireNonNull(id);
ResourceId resourceId = ResourceId.fromString(id);
return deleteByNameAsync(resourceId.resourceGroupName(),
resourceId.parent().parent().name(),
resourceId.parent().name(),
resourceId.name());
}
@Override
public Completable deleteByNameAsync(String resourceGroupName, String namespaceName, String eventHubName, String name) {
return this.inner().deleteAsync(resourceGroupName,
namespaceName,
eventHubName,
name).toCompletable();
}
@Override
public void deleteByName(String resourceGroupName, String namespaceName, String eventHubName, String name) {
deleteByNameAsync(resourceGroupName, namespaceName, eventHubName, name).await();
}
private EventHubConsumerGroupImpl wrapModel(ConsumerGroupInner innerModel) {
return new EventHubConsumerGroupImpl(innerModel.name(), innerModel, this.manager);
}
}