Skip to content

Commit

Permalink
Add start-notice to all segment factory interfaces
Browse files Browse the repository at this point in the history
Add start-notice to all segment factory interfaces

#160
  • Loading branch information
smcvb committed Nov 22, 2023
1 parent c22ddd3 commit 2bdafc6
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
import java.util.function.Function;

/**
* Factory for creating {@link CommandBus} segments for a given {@link TenantDescriptor}.
* Factory for creating {@link CommandBus} segments for a given {@link TenantDescriptor}. After a segment is created, it
* may be started automatically by the factory.
*
* @author Stefan Dragisic
* @since 4.6.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*
* Copyright (c) 2010-2022. Axon Framework
* Copyright (c) 2010-2023. Axon Framework
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
Expand All @@ -21,7 +21,8 @@
import java.util.function.Function;

/**
* Factory for creating {@link EventProcessor} segments for a given {@link TenantDescriptor}.
* Factory for creating {@link EventProcessor} segments for a given {@link TenantDescriptor}. After a segment is
* created, it may be started automatically by the factory.
*
* @author Stefan Dragisic
* @since 4.6.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
import java.util.function.Function;

/**
* Factory for creating {@link EventStore} segments for a given {@link TenantDescriptor}.
* Factory for creating {@link EventStore} segments for a given {@link TenantDescriptor}. After a segment is created, it
* may be started automatically by the factory.
*
* @author Stefan Dragisic
* @since 4.6.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
import java.util.function.Function;

/**
* Factory for creating {@link QueryBus} segments for a given {@link TenantDescriptor}.
* Factory for creating {@link QueryBus} segments for a given {@link TenantDescriptor}. After a segment is created, it
* may be started automatically by the factory.
*
* @author Stefan Dragisic
* @since 4.6.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
import java.util.function.Function;

/**
* Factory for creating {@link QueryUpdateEmitter} segments for a given {@link TenantDescriptor}.
* Factory for creating {@link QueryUpdateEmitter} segments for a given {@link TenantDescriptor}. After a segment is
* created, it may be started automatically by the factory.
*
* @author Stefan Dragisic
* @since 4.6.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
Expand All @@ -21,8 +21,8 @@
import java.util.function.Function;

/**
* Factory for creating {@link EventScheduler} segments for a given {@link TenantDescriptor}.
* After a segment is created, it may be started automatically by the factory.
* Factory for creating {@link EventScheduler} segments for a given {@link TenantDescriptor}. After a segment is
* created, it may be started automatically by the factory.
*
* @author Stefan Dragisic
* @since 4.9.0
Expand Down

0 comments on commit 2bdafc6

Please sign in to comment.