class EventStoreClient::HTTP::Commands::Streams::Delete
Public Instance Methods
call(stream_name, options: {})
click to toggle source
# File lib/event_store_client/adapters/http/commands/streams/delete.rb, line 8 def call(stream_name, options: {}) # rubocop:disable Lint/UnusedMethodArgument connection.call(:delete, "/streams/#{stream_name}", body: {}) Success() end