Skip to content

Commit

Permalink
Whee
Browse files Browse the repository at this point in the history
  • Loading branch information
Mindgamesnl committed Aug 24, 2023
1 parent aca74f4 commit c6635ce
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions rpcnis-common/src/main/java/com/rpcnis/base/RpcOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ public class RpcOptions {
*/
private int timeoutSeconds = 30;

/**
* Generated pseudoclass for proxies will be registered with this class loader.
*/
private ClassLoader classLoader = RpcOptions.class.getClassLoader();

public int getTimeoutSeconds() {
return timeoutSeconds;
}
Expand All @@ -16,4 +21,12 @@ public void setTimeoutSeconds(int timeoutSeconds) {
this.timeoutSeconds = timeoutSeconds;
}

public ClassLoader getClassLoader() {
return classLoader;
}

public void setClassLoader(ClassLoader classLoader) {
this.classLoader = classLoader;
}

}

0 comments on commit c6635ce

Please sign in to comment.