Interface QueryFilter.Builder

All Superinterfaces:
Buildable, CopyableBuilder<QueryFilter.Builder,QueryFilter>, SdkBuilder<QueryFilter.Builder,QueryFilter>, SdkPojo
Enclosing class:
QueryFilter

public static interface QueryFilter.Builder extends SdkPojo, CopyableBuilder<QueryFilter.Builder,QueryFilter>
  • Method Details

    • deltaTime

      QueryFilter.Builder deltaTime(DeltaTime deltaTime)

      Used to limit data to that which has arrived since the last execution of the action.

      Parameters:
      deltaTime - Used to limit data to that which has arrived since the last execution of the action.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • deltaTime

      default QueryFilter.Builder deltaTime(Consumer<DeltaTime.Builder> deltaTime)

      Used to limit data to that which has arrived since the last execution of the action.

      This is a convenience method that creates an instance of the DeltaTime.Builder avoiding the need to create one manually via DeltaTime.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to deltaTime(DeltaTime).

      Parameters:
      deltaTime - a consumer that will call methods on DeltaTime.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: