TopicTypes Interface

public interface TopicTypes

Resource collection API of TopicTypes.

Method Summary

Modifier and Type Method and Description
abstract TopicTypeInfo get(String topicTypeName)

Get information about a topic type.

abstract Response<TopicTypeInfo> getWithResponse(String topicTypeName, Context context)

Get information about a topic type.

abstract PagedIterable<TopicTypeInfo> list()

List all registered topic types.

abstract PagedIterable<TopicTypeInfo> list(Context context)

List all registered topic types.

abstract PagedIterable<EventType> listEventTypes(String topicTypeName)

List event types for a topic type.

abstract PagedIterable<EventType> listEventTypes(String topicTypeName, Context context)

List event types for a topic type.

Method Details

get

public abstract TopicTypeInfo get(String topicTypeName)

Get information about a topic type.

Parameters:

topicTypeName - Name of the topic type.

Returns:

information about a topic type.

getWithResponse

public abstract Response getWithResponse(String topicTypeName, Context context)

Get information about a topic type.

Parameters:

topicTypeName - Name of the topic type.
context - The context to associate with this operation.

Returns:

information about a topic type along with Response<T>.

list

public abstract PagedIterable list()

List all registered topic types.

Returns:

result of the List Topic Types operation.

list

public abstract PagedIterable list(Context context)

List all registered topic types.

Parameters:

context - The context to associate with this operation.

Returns:

result of the List Topic Types operation.

listEventTypes

public abstract PagedIterable listEventTypes(String topicTypeName)

List event types for a topic type.

Parameters:

topicTypeName - Name of the topic type.

Returns:

result of the List Event Types operation.

listEventTypes

public abstract PagedIterable listEventTypes(String topicTypeName, Context context)

List event types for a topic type.

Parameters:

topicTypeName - Name of the topic type.
context - The context to associate with this operation.

Returns:

result of the List Event Types operation.

Applies to

Azure SDK for Java

Latest