[][src]Trait camunda_client::apis::EventSubscriptionApi

pub trait EventSubscriptionApi {
    fn get_event_subscriptions(
        &self,
        event_subscription_id: Option<&str>,
        event_name: Option<&str>,
        event_type: Option<&str>,
        execution_id: Option<&str>,
        process_instance_id: Option<&str>,
        activity_id: Option<&str>,
        tenant_id_in: Option<&str>,
        without_tenant_id: Option<bool>,
        include_event_subscriptions_without_tenant_id: Option<bool>,
        sort_by: Option<&str>,
        sort_order: Option<&str>,
        first_result: Option<i32>,
        max_results: Option<i32>
    ) -> Result<Vec<EventSubscriptionDto>, Error>;
fn get_event_subscriptions_count(
        &self,
        event_subscription_id: Option<&str>,
        event_name: Option<&str>,
        event_type: Option<&str>,
        execution_id: Option<&str>,
        process_instance_id: Option<&str>,
        activity_id: Option<&str>,
        tenant_id_in: Option<&str>,
        without_tenant_id: Option<bool>,
        include_event_subscriptions_without_tenant_id: Option<bool>
    ) -> Result<CountResultDto, Error>; }

Required methods

fn get_event_subscriptions(
    &self,
    event_subscription_id: Option<&str>,
    event_name: Option<&str>,
    event_type: Option<&str>,
    execution_id: Option<&str>,
    process_instance_id: Option<&str>,
    activity_id: Option<&str>,
    tenant_id_in: Option<&str>,
    without_tenant_id: Option<bool>,
    include_event_subscriptions_without_tenant_id: Option<bool>,
    sort_by: Option<&str>,
    sort_order: Option<&str>,
    first_result: Option<i32>,
    max_results: Option<i32>
) -> Result<Vec<EventSubscriptionDto>, Error>

fn get_event_subscriptions_count(
    &self,
    event_subscription_id: Option<&str>,
    event_name: Option<&str>,
    event_type: Option<&str>,
    execution_id: Option<&str>,
    process_instance_id: Option<&str>,
    activity_id: Option<&str>,
    tenant_id_in: Option<&str>,
    without_tenant_id: Option<bool>,
    include_event_subscriptions_without_tenant_id: Option<bool>
) -> Result<CountResultDto, Error>

Loading content...

Implementors

impl EventSubscriptionApi for EventSubscriptionApiClient[src]

Loading content...