Skip to content

Commit 005595c

Browse files
authored
Merge pull request #25 from scaleoutsoftware/br-dev
Br dev
2 parents 170b8f4 + a959d35 commit 005595c

File tree

208 files changed

+10751
-352
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

208 files changed

+10751
-352
lines changed

Core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
group 'com.scaleoutsoftware.digitaltwin'
6-
version '3.0.9'
6+
version '3.0.10'
77

88
sourceCompatibility = JavaVersion.VERSION_12
99

Core/src/main/java/com/scaleoutsoftware/digitaltwin/core/AlertMessage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2021 by ScaleOut Software, Inc.
2+
Copyright (c) 2025 by ScaleOut Software, Inc.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Core/src/main/java/com/scaleoutsoftware/digitaltwin/core/AlertProviderConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2021 by ScaleOut Software, Inc.
2+
Copyright (c) 2025 by ScaleOut Software, Inc.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Core/src/main/java/com/scaleoutsoftware/digitaltwin/core/CacheOperationStatus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2024 by ScaleOut Software, Inc.
2+
Copyright (c) 2025 by ScaleOut Software, Inc.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Core/src/main/java/com/scaleoutsoftware/digitaltwin/core/CacheResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2024 by ScaleOut Software, Inc.
2+
Copyright (c) 2025 by ScaleOut Software, Inc.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Core/src/main/java/com/scaleoutsoftware/digitaltwin/core/DigitalTwinBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2018 by ScaleOut Software, Inc.
2+
Copyright (c) 2025 by ScaleOut Software, Inc.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Core/src/main/java/com/scaleoutsoftware/digitaltwin/core/DigitalTwinTimerMessage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2022 by ScaleOut Software, Inc.
2+
Copyright (c) 2025 by ScaleOut Software, Inc.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Core/src/main/java/com/scaleoutsoftware/digitaltwin/core/InitContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2024 by ScaleOut Software, Inc.
2+
Copyright (c) 2025 by ScaleOut Software, Inc.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package com.scaleoutsoftware.digitaltwin.core;
2+
3+
import java.util.Date;
4+
5+
/**
6+
* The InitSimulationContext is passed as a parameter to the {@link SimulationProcessor#onInitSimulation(InitSimulationContext, DigitalTwinBase, Date)} method of
7+
* digital twin instance when a simulation is initializing.
8+
*/
9+
public interface InitSimulationContext {
10+
/**
11+
* Retrieve a {@link SharedData} accessor for this model's shared data.
12+
* @return a {@link SharedData} instance.
13+
*/
14+
public abstract SharedData getSharedModelData();
15+
16+
/**
17+
* Retrieve a {@link SharedData} accessor for globally shared data.
18+
* @return a {@link SharedData} instance.
19+
*/
20+
public abstract SharedData getSharedGlobalData();
21+
}

Core/src/main/java/com/scaleoutsoftware/digitaltwin/core/MessageFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2018 by ScaleOut Software, Inc.
2+
Copyright (c) 2025 by ScaleOut Software, Inc.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)