-
Notifications
You must be signed in to change notification settings - Fork 758
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 #43031 from warunalakshitha/runtime_api_improve
[master] Fix runtime invokeAsync API to call function block the calling Thread
- Loading branch information
Showing
16 changed files
with
437 additions
and
389 deletions.
There are no files selected for viewing
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
48 changes: 48 additions & 0 deletions
48
...allerina-runtime/src/main/java/io/ballerina/runtime/internal/scheduling/SyncCallback.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,48 @@ | ||
/* | ||
* Copyright (c) 2024, WSO2 LLC. (http://wso2.com) | ||
* | ||
* 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 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.ballerina.runtime.internal.scheduling; | ||
|
||
import io.ballerina.runtime.api.async.Callback; | ||
import io.ballerina.runtime.api.values.BError; | ||
|
||
import java.util.concurrent.CountDownLatch; | ||
|
||
/** | ||
* This class used to handle ballerina function invocation synchronously. | ||
* | ||
* @since 2201.9.1 | ||
*/ | ||
public class SyncCallback implements Callback { | ||
|
||
public CountDownLatch latch; | ||
public BError initError; | ||
|
||
public SyncCallback(CountDownLatch latch) { | ||
this.latch = latch; | ||
} | ||
|
||
@Override | ||
public void notifySuccess(Object result) { | ||
latch.countDown(); | ||
} | ||
|
||
@Override | ||
public void notifyFailure(BError error) { | ||
latch.countDown(); | ||
initError = error; | ||
} | ||
} |
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
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
Oops, something went wrong.