All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ray.api.exception.PendingCallsLimitExceededException Maven / Gradle / Ivy

There is a newer version: 2.36.0
Show newest version
package io.ray.api.exception;

import io.ray.api.id.ActorId;

/**
 * Indicates that the back pressure occurs when submitting an actor task.
 *
 * 

This exception could happen probably because the caller calls the callee too frequently. */ public class PendingCallsLimitExceededException extends RayException { public ActorId actorId; public PendingCallsLimitExceededException(String message) { super(message); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy