Sha256: cd44a4e33e83abc8a5fbf56ced7141ba93578543ec954933b5d6f446406c0318
Contents?: true
Size: 1.36 KB
Versions: 10
Compression:
Stored size: 1.36 KB
Contents
module PgEventstore class SubscriptionsSetCommandQueries # _@param_ `connection` def initialize: (PgEventstore::Connection connection) -> void # _@param_ `subscriptions_set_id` # # _@param_ `command_name` # # _@param_ `data` def find_or_create_by: (subscriptions_set_id: Integer, command_name: String, data: ::Hash[untyped, untyped]) -> PgEventstore::SubscriptionFeederCommands::Base # _@param_ `subscriptions_set_id` # # _@param_ `command_name` def find_by: (subscriptions_set_id: Integer, command_name: String) -> PgEventstore::SubscriptionFeederCommands::Base? # _@param_ `subscriptions_set_id` # # _@param_ `command_name` # # _@param_ `data` def create: (subscriptions_set_id: Integer, command_name: String, data: ::Hash[untyped, untyped]) -> PgEventstore::SubscriptionFeederCommands::Base # _@param_ `subscriptions_set_id` def find_commands: (Integer subscriptions_set_id) -> ::Array[PgEventstore::SubscriptionFeederCommands::Base] # _@param_ `id` def delete: (Integer id) -> void # _@param_ `hash` def deserialize: (::Hash[untyped, untyped] hash) -> PgEventstore::SubscriptionFeederCommands::Base def transaction_queries: () -> PgEventstore::TransactionQueries # Returns the value of attribute connection. attr_accessor connection: PgEventstore::Connection end end
Version data entries
10 entries across 10 versions & 1 rubygems