1
vote
0answers
31 views
Why isn’t the Ruby 1.9 lambda call possible without the dot in front of the parens?
I checked out the latest Ruby version, to play a bit with the latest changes. The first thing I tried to do was call a Ruby lambda/block/proc just like you'd do with a Python calla …
2
votes
5answers
114 views
Java: Parameterized Runnable
Standard Runnable interface has only non-parametrized run() method. There is also Callable<V> interface with call() method returning result of generic type. I need to pass ge …
0
votes
2answers
27 views
PHP Callable Object as Object Member
I have a class Logger which, among other things has a method Log.
As Log is the most common use of the Logger instance, I have wired __invoke to call Log
Another class, "Site" con …
1
vote
4answers
462 views
invokeAll() is not willing to acept a Collection<Callable<T>>
Hey
I fail to understand why this code won't compile
ExecutorService executor = new ScheduledThreadPoolExecutor(threads);
class DocFeeder implements Callable<Boolean> {... …
0
votes
1answer
56 views
Is there a way to have callable objects in Groovy?
If for example I have a class named A. Can I make an object be callable, just like Python does? For example :
def myObject = new A()
myObject()
and that would call some object …
1
vote
2answers
209 views
How to terminate CXF webservice call within Callable upon Future cancellation
Edit
This question has gone through a few iterations by now, so feel free to look through the revisions to see some background information on the history and things tried.
I'm …
3
votes
1answer
263 views
What is the difference between a function object and a callable object?
I recently saw the presentation about the changes in ECMAScript 5. And there was a slide with this statement:
Function vs Callable
typeof f === 'function' …
1
vote
5answers
371 views
How to schedule a Callable to run on a specific time?
I need to run a callable at a specific time of day. One way to do it is to calculate the timediff between now and the desired time , and to use the executor.scheduleAtFixedRate .
…
2
votes
3answers
99 views
How much logic is it “right” to put in a Callable?
I'm using callables quite often , and I've stubled upon a question that irritates me:
Lets say that to run function foo() , one needs to do a couple of checks first.
Should you …
8
votes
6answers
438 views
How can I wrap a method so that I can kill its execution if it exceeds a specified timeout?
I have a method that I would like to call. However, I'm looking for a clean, simple way to kill it or force it to return if it is taking too long to execute.
I'm using Java.
to …
15
votes
10answers
3k views
What is a “callable” in Python ?
Now that it's clear what a metaclass is, there is an associated concept that I use all the time without knowing what it really means.
I suppose everybody made once a mistake with …
