MCPcopy
hub / github.com/IBM/sarama / IncrementalAlterConfigs

Method IncrementalAlterConfigs

broker.go:944–953  ·  view source on GitHub ↗

IncrementalAlterConfigs sends a request to incremental alter config and return a response or error

(request *IncrementalAlterConfigsRequest)

Source from the content-addressed store, hash-verified

942
943// IncrementalAlterConfigs sends a request to incremental alter config and return a response or error
944func (b *Broker) IncrementalAlterConfigs(request *IncrementalAlterConfigsRequest) (*IncrementalAlterConfigsResponse, error) {
945 response := new(IncrementalAlterConfigsResponse)
946
947 err := b.sendAndReceive(request, response)
948 if err != nil {
949 return nil, err
950 }
951
952 return response, nil
953}
954
955// DeleteGroups sends a request to delete groups and returns a response or error
956func (b *Broker) DeleteGroups(request *DeleteGroupsRequest) (*DeleteGroupsResponse, error) {

Callers 1

Calls 1

sendAndReceiveMethod · 0.95

Tested by

no test coverage detected