1
アクション結果をランダムに決定できるルールを定義することは可能ですか?例えばDrools - ランダムアクション結果のルールを実行する能力?
:
rule "X"
dialect "mvel"
when
check : tRiskCheckData(riskValue <= 5 , Money <= 50000)
then
%% this action is executed to accept the request
check.setReturnCode(0);
しかし、ランダムに要求を受け入れることができ、ルールを定義することは可能でしょうか?
のような:
if rand < 0.5
check.setReturnCode(0); %%accept the request
else
check.setReturnCode(1); %%refuse the request
ありがとう!