mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-27 08:19:19 +00:00
fix(event handling): use internal pubsub for view update (#1118)
* start sub * start implement subsciptions * start subscription * implementation for member done * admin done * fix: tests * extend handlers * prepary notification * no errors in adminapi * changed current sequence in all packages * ignore mocks * works * subscriptions as singleton * tests * refactor: rename function scope var
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
package view
|
||||
|
||||
import (
|
||||
"github.com/caos/zitadel/internal/eventstore/models"
|
||||
"github.com/caos/zitadel/internal/view/repository"
|
||||
"time"
|
||||
)
|
||||
|
||||
const (
|
||||
notificationTable = "notification.notifications"
|
||||
)
|
||||
|
||||
func (v *View) GetLatestNotificationSequence() (*repository.CurrentSequence, error) {
|
||||
return v.latestSequence(notificationTable)
|
||||
func (v *View) GetLatestNotificationSequence(aggregateType string) (*repository.CurrentSequence, error) {
|
||||
return v.latestSequence(notificationTable, aggregateType)
|
||||
}
|
||||
|
||||
func (v *View) ProcessedNotificationSequence(eventSequence uint64, eventTimestamp time.Time) error {
|
||||
return v.saveCurrentSequence(notificationTable, eventSequence, eventTimestamp)
|
||||
func (v *View) ProcessedNotificationSequence(event *models.Event) error {
|
||||
return v.saveCurrentSequence(notificationTable, event)
|
||||
}
|
||||
|
||||
func (v *View) UpdateNotificationSpoolerRunTimestamp() error {
|
||||
|
||||
Reference in New Issue
Block a user