Uses of Interface
cz.cuni.amis.pogamut.base.utils.logging.IAgentLogger

Packages that use IAgentLogger
cz.cuni.amis.pogamut.base.agent   
cz.cuni.amis.pogamut.base.agent.impl   
cz.cuni.amis.pogamut.base.agent.jmx.proxy   
cz.cuni.amis.pogamut.base.communication.command.impl   
cz.cuni.amis.pogamut.base.communication.connection.impl   
cz.cuni.amis.pogamut.base.communication.connection.impl.socket   
cz.cuni.amis.pogamut.base.communication.mediator.impl   
cz.cuni.amis.pogamut.base.communication.parser.impl.yylex   
cz.cuni.amis.pogamut.base.communication.translator.impl   
cz.cuni.amis.pogamut.base.communication.worldview.impl   
cz.cuni.amis.pogamut.base.component.bus   
cz.cuni.amis.pogamut.base.component.lifecyclebus   
cz.cuni.amis.pogamut.base.server   
cz.cuni.amis.pogamut.base.utils.logging   
cz.cuni.amis.pogamut.base.utils.logging.jmx   
cz.cuni.amis.pogamut.base3d.agent   
cz.cuni.amis.pogamut.base3d.worldview   
cz.cuni.amis.pogamut.base3d.worldview.impl   
cz.cuni.amis.pogamut.multi.communication.worldview.impl   
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.agent
 

Methods in cz.cuni.amis.pogamut.base.agent that return IAgentLogger
 IAgentLogger IAgent.getLogger()
          Returns AgentLogger for the instance allowing creating new log categories or adding new handlers to them.
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.agent.impl
 

Methods in cz.cuni.amis.pogamut.base.agent.impl that return IAgentLogger
 IAgentLogger AbstractAgent.getLogger()
           
 

Constructors in cz.cuni.amis.pogamut.base.agent.impl with parameters of type IAgentLogger
AbstractAgent(IAgentId agentId, IComponentBus eventBus, IAgentLogger logger)
          Introspection folder with properties and other subfolders obtained from this agent.
AbstractEmbodiedAgent(IAgentId agentId, IComponentBus bus, IAgentLogger logger, WORLD_VIEW worldView, ACT act)
           
AbstractGhostAgent(IAgentId agentId, IComponentBus bus, IAgentLogger logger, WORLD_VIEW worldView, ACT act)
           
AbstractObservingAgent(IAgentId agentId, IComponentBus bus, IAgentLogger logger, WORLD_VIEW worldView)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.agent.jmx.proxy
 

Methods in cz.cuni.amis.pogamut.base.agent.jmx.proxy that return IAgentLogger
 IAgentLogger AgentJMXProxy.getLogger()
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.communication.command.impl
 

Constructors in cz.cuni.amis.pogamut.base.communication.command.impl with parameters of type IAgentLogger
Act(IWorldWriterProvider writerProvider, ICommandSerializer serializer, IComponentBus eventBus, IAgentLogger logger)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.communication.connection.impl
 

Constructors in cz.cuni.amis.pogamut.base.communication.connection.impl with parameters of type IAgentLogger
AbstractConnection(ADDRESS address, ComponentDependencies dependencies, IComponentBus bus, IAgentLogger logger)
           
AbstractConnection(ComponentDependencies dependencies, IComponentBus bus, IAgentLogger logger)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.communication.connection.impl.socket
 

Constructors in cz.cuni.amis.pogamut.base.communication.connection.impl.socket with parameters of type IAgentLogger
SocketConnection(ComponentDependencies dependencies, IComponentBus bus, IAgentLogger logger)
           
SocketConnection(ISocketConnectionAddress address, ComponentDependencies dependencies, IComponentBus bus, IAgentLogger logger)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.communication.mediator.impl
 

Constructors in cz.cuni.amis.pogamut.base.communication.mediator.impl with parameters of type IAgentLogger
Mediator(IWorldChangeEventOutput producer, IComponentBus bus, IAgentLogger logger)
          The object in passed to the constructor (IWorldEventOutput) is world event producer.
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.communication.parser.impl.yylex
 

Constructors in cz.cuni.amis.pogamut.base.communication.parser.impl.yylex with parameters of type IAgentLogger
IYylexObserver.LogObserver(IAgentLogger agentLogger)
           
YylexParser(IWorldReaderProvider readerProvider, IYylex yylex, IYylexObserver yylexObserver, IComponentBus eventBus, IAgentLogger logger)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.communication.translator.impl
 

Constructors in cz.cuni.amis.pogamut.base.communication.translator.impl with parameters of type IAgentLogger
WorldMessageTranslator(IWorldMessageParser parser, IWorldMessageTranslator messageHandler, IComponentBus eventBus, IAgentLogger logger)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.communication.worldview.impl
 

Constructors in cz.cuni.amis.pogamut.base.communication.worldview.impl with parameters of type IAgentLogger
AbstractWorldView(ComponentDependencies dependencies, IComponentBus bus, IAgentLogger logger)
           
EventDrivenWorldView(ComponentDependencies dependencies, IComponentBus bus, IAgentLogger log)
           
LockableWorldView(ComponentDependencies dependencies, IComponentBus bus, IAgentLogger log)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.component.bus
 

Constructors in cz.cuni.amis.pogamut.base.component.bus with parameters of type IAgentLogger
ComponentBus(IAgentLogger logger)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.component.lifecyclebus
 

Constructors in cz.cuni.amis.pogamut.base.component.lifecyclebus with parameters of type IAgentLogger
LifecycleBus(IAgentLogger logger)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.server
 

Constructors in cz.cuni.amis.pogamut.base.server with parameters of type IAgentLogger
AbstractWorldServer(IAgentId agentId, IAgentLogger agentLogger, IComponentBus bus, WORLD_VIEW worldView, ACT act)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.utils.logging
 

Classes in cz.cuni.amis.pogamut.base.utils.logging that implement IAgentLogger
 class AbstractAgentLogger
          All logging apis are fine ...
 class AgentLogger
          All logging apis are fine ...
 

Constructors in cz.cuni.amis.pogamut.base.utils.logging with parameters of type IAgentLogger
TestAgents.NetworkLoggingAgent(IAgentId agentId, IComponentBus eventBus, IAgentLogger logger)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base.utils.logging.jmx
 

Classes in cz.cuni.amis.pogamut.base.utils.logging.jmx that implement IAgentLogger
 class AgentLoggerJMXProxy
          Makes remote AgentLogger look like local logger.
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base3d.agent
 

Constructors in cz.cuni.amis.pogamut.base3d.agent with parameters of type IAgentLogger
AbstractAgent3D(IAgentId agentId, IComponentBus eventBus, IAgentLogger logger, WORLD_VIEW worldView, ACT act)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base3d.worldview
 

Constructors in cz.cuni.amis.pogamut.base3d.worldview with parameters of type IAgentLogger
Vision(IWorldView worldView, IAgentLogger logger)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.base3d.worldview.impl
 

Constructors in cz.cuni.amis.pogamut.base3d.worldview.impl with parameters of type IAgentLogger
BatchAwareWorldView(ComponentDependencies dependencies, IComponentBus bus, IAgentLogger log)
           
LockableBatchAwareWorldView(ComponentDependencies dependencies, IComponentBus bus, IAgentLogger log)
           
SyncLockableBatchAwareWorldView(ComponentDependencies dependencies, IComponentBus bus, IAgentLogger log)
           
VisionWorldView(ComponentDependencies dependencies, IComponentBus bus, IAgentLogger log)
           
 

Uses of IAgentLogger in cz.cuni.amis.pogamut.multi.communication.worldview.impl
 

Constructors in cz.cuni.amis.pogamut.multi.communication.worldview.impl with parameters of type IAgentLogger
AbstractLocalWorldView(ComponentDependencies dependencies, ILifecycleBus bus, IAgentLogger logger, ISharedWorldView sharedWV, ITeamedAgentId agentId)
           
BatchAwareLocalWorldView(ComponentDependencies dependencies, ILifecycleBus bus, IAgentLogger logger, ISharedWorldView parentWorldView, ITeamedAgentId agentId)
           
EventDrivenLocalWorldView(ComponentDependencies dependencies, ILifecycleBus bus, IAgentLogger logger, ISharedWorldView sharedWV, ITeamedAgentId agentId)
           
VisionLocalWorldView(ComponentDependencies dependencies, ILifecycleBus bus, IAgentLogger logger, ISharedWorldView parentWorldView, ITeamedAgentId agentId)
           
 



Copyright © 2012 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.