Uses of Interface
edu.memphis.ccrg.lida.workspace.workspacebuffers.WorkspaceBuffer

Packages that use WorkspaceBuffer
edu.memphis.ccrg.lida.attentioncodelets Contains classes related to Attention Codelets. 
edu.memphis.ccrg.lida.framework.tasks Contains classes related to the framework's tasks (small demon-like processes) and their management. 
edu.memphis.ccrg.lida.workspace.structurebuildingcodelets Contains classes related to the definition, default implementation, and management of Structure-Building codelets. 
edu.memphis.ccrg.lida.workspace.workspacebuffers Contains classes related to the definition of of Workspace buffers and their default implementations. 
 

Uses of WorkspaceBuffer in edu.memphis.ccrg.lida.attentioncodelets
 

Fields in edu.memphis.ccrg.lida.attentioncodelets declared as WorkspaceBuffer
protected  WorkspaceBuffer AttentionCodeletImpl.currentSituationalModel
          Where codelet will look for and retrieve sought content from
 

Methods in edu.memphis.ccrg.lida.attentioncodelets with parameters of type WorkspaceBuffer
 boolean BasicAttentionCodelet.bufferContainsSoughtContent(WorkspaceBuffer buffer)
          Deprecated. Returns true if specified WorkspaceBuffer contains this codelet's sought content.
 boolean NeighborhoodAttentionCodelet.bufferContainsSoughtContent(WorkspaceBuffer buffer)
          Returns true if specified WorkspaceBuffer contains this codelet's sought content.
 boolean DefaultAttentionCodelet.bufferContainsSoughtContent(WorkspaceBuffer buffer)
          Returns true if specified buffer contains at least one node above DefaultAttentionCodelet.attentionThreshold.
 NodeStructure BasicAttentionCodelet.retrieveWorkspaceContent(WorkspaceBuffer buffer)
          Deprecated. Returns sought content and related content from specified WorkspaceBuffer.
 NodeStructure DefaultAttentionCodelet.retrieveWorkspaceContent(WorkspaceBuffer buffer)
          Returns a the most active WorkspaceContent and possibly neighboring content as specified by DefaultAttentionCodelet.retrievalDepths
 

Uses of WorkspaceBuffer in edu.memphis.ccrg.lida.framework.tasks
 

Methods in edu.memphis.ccrg.lida.framework.tasks with parameters of type WorkspaceBuffer
 boolean Codelet.bufferContainsSoughtContent(WorkspaceBuffer buffer)
          Returns true if specified WorkspaceBuffer contains this codelet's sought content.
 NodeStructure Codelet.retrieveWorkspaceContent(WorkspaceBuffer buffer)
          Returns sought content and related content from specified WorkspaceBuffer.
 

Uses of WorkspaceBuffer in edu.memphis.ccrg.lida.workspace.structurebuildingcodelets
 

Fields in edu.memphis.ccrg.lida.workspace.structurebuildingcodelets declared as WorkspaceBuffer
protected  WorkspaceBuffer StructureBuildingCodeletImpl.writableBuffer
          WorkspaceBuffer to be written to.
 

Fields in edu.memphis.ccrg.lida.workspace.structurebuildingcodelets with type parameters of type WorkspaceBuffer
protected  java.util.Map<ModuleName,WorkspaceBuffer> StructureBuildingCodeletImpl.readableBuffers
          Map of workspace buffers this codelet reads from.
 

Methods in edu.memphis.ccrg.lida.workspace.structurebuildingcodelets with parameters of type WorkspaceBuffer
 boolean BasicStructureBuildingCodelet.bufferContainsSoughtContent(WorkspaceBuffer buffer)
           
 NodeStructure BasicStructureBuildingCodelet.retrieveWorkspaceContent(WorkspaceBuffer buffer)
           
 

Uses of WorkspaceBuffer in edu.memphis.ccrg.lida.workspace.workspacebuffers
 

Subinterfaces of WorkspaceBuffer in edu.memphis.ccrg.lida.workspace.workspacebuffers
 interface BroadcastQueue
          A WorkspaceBuffer storing the recent contents of consciousness.
 

Classes in edu.memphis.ccrg.lida.workspace.workspacebuffers that implement WorkspaceBuffer
 class BroadcastQueueImpl
          The BroadcastQueue is the data structure storing the recent contents of consciousness.
 class WorkspaceBufferImpl
          This class implements module of WorkspaceBuffer.