Interface AuditEventRepositoryFactory

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface AuditEventRepositoryFactory
For creating Redis AuditEventRepository beans.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.boot.actuate.audit.AuditEventRepository
    create(String name, AuditEventMapper auditEventMapper, Predicate<org.springframework.boot.actuate.audit.AuditEvent> filter)
    Creates an AuditEventRepository.
  • Method Details

    • create

      org.springframework.boot.actuate.audit.AuditEventRepository create(String name, AuditEventMapper auditEventMapper, Predicate<org.springframework.boot.actuate.audit.AuditEvent> filter)
      Creates an AuditEventRepository.
      Parameters:
      name - the Redis name for the list/timeseries
      auditEventMapper - the event mapper
      filter - the filter predicate
      Returns:
      an AuditEventRepository