|
@@ -109,7 +109,8 @@ public class CtSph implements Sph { |
|
|
return asyncEntry; |
|
|
return asyncEntry; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
private AsyncEntry asyncEntryInternal(ResourceWrapper resourceWrapper, int count, Object... args) throws BlockException { |
|
|
private AsyncEntry asyncEntryInternal(ResourceWrapper resourceWrapper, int count, Object... args) |
|
|
|
|
|
throws BlockException { |
|
|
return asyncEntryWithPriorityInternal(resourceWrapper, count, false, args); |
|
|
return asyncEntryWithPriorityInternal(resourceWrapper, count, false, args); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@@ -321,4 +322,11 @@ public class CtSph implements Sph { |
|
|
StringResourceWrapper resource = new StringResourceWrapper(name, type); |
|
|
StringResourceWrapper resource = new StringResourceWrapper(name, type); |
|
|
return entryWithPriority(resource, count, prioritized); |
|
|
return entryWithPriority(resource, count, prioritized); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
public Entry entryWithPriority(String name, EntryType type, int count, boolean prioritized, Object... args) |
|
|
|
|
|
throws BlockException { |
|
|
|
|
|
StringResourceWrapper resource = new StringResourceWrapper(name, type); |
|
|
|
|
|
return entryWithPriority(resource, count, prioritized, args); |
|
|
|
|
|
} |
|
|
} |
|
|
} |