-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1242 from SpineEventEngine/custom-log-site
Custom log site and new black box API
- Loading branch information
Showing
29 changed files
with
1,326 additions
and
43 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
server/src/main/java/io/spine/server/log/HandlerLifecycle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* Copyright 2020, TeamDev. All rights reserved. | ||
* | ||
* Redistribution and use in source and/or binary forms, with or without | ||
* modification, must retain the above copyright notice and the following | ||
* disclaimer. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
package io.spine.server.log; | ||
|
||
import io.spine.server.model.HandlerMethod; | ||
|
||
/** | ||
* Callbacks for a {@link HandlerMethod} invocation. | ||
* | ||
* <p>If the target of the method implements {@code HandlerLifecycle}, it is invoked alongside | ||
* handler method. For example: | ||
* <pre> | ||
* class SignUpSubscriber extends AbstractEventSubscriber implements HandlerLifecycle { | ||
* | ||
* {@literal @Subscribe} | ||
* void on(UserSignedUp event) { | ||
* // ... | ||
* } | ||
* | ||
* {@literal @Override} | ||
* public void beforeInvoke(HandlerMethod<?, ?, ?, ?> method) { | ||
* // ... | ||
* } | ||
* | ||
* {@literal @Override} | ||
* public void afterInvoke(HandlerMethod<?, ?, ?, ?> method) { | ||
* // ... | ||
* } | ||
* } | ||
* </pre> | ||
* | ||
* <p>When a {@code UserSignedUp} event is dispatched to the {@code SignUpSubscriber}, | ||
* the invocation order goes as follows: | ||
* <ol> | ||
* <li>{@code beforeInvoke([instance representing on(UserSignedUp) method])}. | ||
* <li>{@code on(UserSignedUp)}. | ||
* <li>{@code afterInvoke([instance representing on(UserSignedUp) method])}. | ||
* </ol> | ||
*/ | ||
public interface HandlerLifecycle { | ||
|
||
/** | ||
* A callback for a handler method invocation start. | ||
* | ||
* <p>The handler method is invoked immediately after this method. | ||
*/ | ||
void beforeInvoke(HandlerMethod<?, ?, ?, ?> method); | ||
|
||
/** | ||
* A callback for a handler method invocation end. | ||
* | ||
* <p>This method is invoked immediately after the handler method, even if it has thrown | ||
* an exception. | ||
*/ | ||
void afterInvoke(HandlerMethod<?, ?, ?, ?> method); | ||
} |
Oops, something went wrong.