Skip to content

Commit

Permalink
Commit listener registration (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
fh-ms committed Jun 25, 2024
1 parent 45897a8 commit 082679f
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@
* #%L
* EclipseStore Example Extension Wrapper
* %%
* Copyright (C) 2023 MicroStream Software
* Copyright (C) 2023 - 2024 MicroStream Software
* %%
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
*
* SPDX-License-Identifier: EPL-2.0
* #L%
*/

import org.eclipse.serializer.persistence.types.PersistenceCommitListener;
import org.eclipse.serializer.persistence.types.PersistenceStorer;

/**
Expand Down Expand Up @@ -120,7 +121,11 @@ public long maximumCapacity()
return this.delegate.maximumCapacity();
}


@Override
public void registerCommitListener(final PersistenceCommitListener listener)
{
this.delegate.registerCommitListener(listener);
}


}

0 comments on commit 082679f

Please sign in to comment.