Uses of Interface
orc.runtime.values.Callable

Packages that use Callable
orc.lib.bool   
orc.lib.comp   
orc.lib.math   
orc.lib.music_calendar   
orc.lib.net Sites for internet communication. 
orc.lib.orchard   
orc.lib.state   
orc.lib.str   
orc.lib.time   
orc.lib.util   
orc.runtime Runtime for Orc interpreter. 
orc.runtime.sites Abstract base classes for Orc sites plus fundamental sites. 
orc.runtime.sites.core Fundamental sites. 
orc.runtime.sites.java Wrappers which enable using Java objects and classes as Orc sites. 
orc.runtime.values   
 

Uses of Callable in orc.lib.bool
 

Classes in orc.lib.bool that implement Callable
 class And
           
 class BoolBinopSite
           
 class Or
           
 

Uses of Callable in orc.lib.comp
 

Classes in orc.lib.comp that implement Callable
 class Greater
           
 class Greq
           
 class Leq
           
 class Less
           
 class NumericComparisonSite
           
 

Uses of Callable in orc.lib.math
 

Classes in orc.lib.math that implement Callable
 class Add
          NB: this is overloaded to operate on strings, with implicit toString coercion (like Java).
 class Div
           
 class Mod
           
 class Mult
           
 class Sub
           
 class UMinus
           
 

Uses of Callable in orc.lib.music_calendar
 

Classes in orc.lib.music_calendar that implement Callable
 class GoogleCalendar
           
 class GoogleSearch
          A hack to work around the fact that dynamic web service loading doesn't yet work in servlets.
 class MySpace
           
 

Uses of Callable in orc.lib.net
 

Classes in orc.lib.net that implement Callable
 class CxfWebservice
          SOAP (WSDL) webservice site.
 class Localhost
           
 class Mail
          Wrapper around JavaMail API for reading and sending mail.
static class Mail.MailFilter
          Filter for a MailFolder.
static class Mail.MailFolder
          Folder containing messages or subfolders.
static class Mail.MailMessage
          Message being composed or viewed from a store.
static class Mail.MailStore
          Mailbox.
static class Mail.MailTransport
          Outgoing transport (SMTP).
 class Webservice
          JAX-RPC-based webservice site.
 class XMPPConnection
          Orc support for the XMPP (Jabber, Google Talk) messaging protocol.
 

Uses of Callable in orc.lib.orchard
 

Classes in orc.lib.orchard that implement Callable
 class Prompt
          Ask the user a question and return their response.
 

Uses of Callable in orc.lib.state
 

Classes in orc.lib.state that implement Callable
 class Buffer
           
protected  class Buffer.BufferInstance
           
 class Cell
           
protected  class Cell.CellInstance
           
 class Ref
           
protected  class Ref.RefInstance
           
 class SyncChannel
           
protected  class SyncChannel.SyncChannelInstance
           
 

Uses of Callable in orc.lib.str
 

Classes in orc.lib.str that implement Callable
 class AtoB
           
 class AtoI
           
 class Cat
          Note that you can also use the syntax "a" + "b" for string concatenation.
 class Print
           
 class Println
           
 

Uses of Callable in orc.lib.time
 

Classes in orc.lib.time that implement Callable
 class MakeTimer
          Site interface to the Orc engine's logical clock.
 class Rtimer
          Implements the RTimer site
 

Uses of Callable in orc.lib.util
 

Classes in orc.lib.util that implement Callable
 class Random
           
 class Thread
          Wrap a site call in a thread.
 class UUID
          Generate random UUIDs.
 

Uses of Callable in orc.runtime
 

Methods in orc.runtime that return Callable
 Callable Token.call(Arg a)
           
 

Uses of Callable in orc.runtime.sites
 

Classes in orc.runtime.sites that implement Callable
 class DotSite
           
 class EvalSite
          Abstract class for sites with a total and immediate semantics: evaluate the arguments and return a value without blocking and without affecting the Orc engine.
 class PartialSite
          Abstract class for sites with a partial and immediate semantics: evaluate as for a total immediate site (see EvalSite), but if the evaluation returns null, the site remains silent.
 class SimpleSite
          Simple sites which don't need access to tokens.
 class Site
          Base class for all sites
 class ThreadedSite
          Abstract class for sites whose calls may block (the Java thread).
 class VariantSite
           
 

Uses of Callable in orc.runtime.sites.core
 

Classes in orc.runtime.sites.core that implement Callable
 class Cons
          Implements the "cons" constructor site.
 class Equal
           
 class Head
           
 class If
           
 class Inequal
           
 class IsCons
           
 class IsNil
           
 class IsNone
           
 class IsSome
           
 class Let
          Implements the built-in "let" site
 class Nil
          Implements the "cons" constructor site.
 class None
          Implements the "none" option constructor site.
 class Not
           
 class Some
          Implements the "some" option constructor site.
 class Tail
           
 

Uses of Callable in orc.runtime.sites.java
 

Classes in orc.runtime.sites.java that implement Callable
 class ClassProxy
           
 class MethodProxy
          This extends SimpleSite so that methods can use orc.runtime.Continuation to take advantage of Orc's cooperative threading, if desired.
 class ObjectProxy
          A Java object being used as an Orc Site.
 class ThreadedObjectProxy
           
 

Uses of Callable in orc.runtime.values
 

Classes in orc.runtime.values that implement Callable
 class Closure
          Represents a standard closure: a function defined in an environment.
 class TupleValue
          A tuple value container
 

Methods in orc.runtime.values that return Callable
 Callable Constant.forceCall(Token t)
          A Java value used in call position becomes a proxied object.
 Callable Future.forceCall(Token t)
           
 Callable PartialValue.forceCall(Token t)
           
 Callable Value.forceCall(Token t)
           
 Callable GroupCell.forceCall(Token t)