PHP 인터페이스 AppserverIo\Appserver\Core\Api\Node\LoggerNodeInterface

저자: Johann Zelger ([email protected])
파일 보기 프로젝트 열기: appserver-io/appserver 0 사용 예제들

공개 메소드들

메소드 설명
getChannelName ( ) : string Returns information about the system loggers channel name.
getHandlers ( ) : array Returns the array with all registered handlers.
getName ( ) : string Returns loggers name
getParam ( string $name ) : mixed Returns the param with the passed name casted to the specified type.
getParams ( ) : array Array with the handler params to use.
getParamsAsArray ( ) : array Returns the params casted to the defined type as associative array.
getPrimaryKey ( ) : string Returns the nodes primary key, the name by default.
getProcessors ( ) : array Returns the array with all registered processors.
getType ( ) : string Returns information about the system loggers class name.
setParam ( string $name, string $type, mixed $value ) : void Sets the param with the passed name, type and value.
setParams ( array $params ) : void Array with the handler params to use.

메소드 상세

getChannelName() 공개 메소드

Returns information about the system loggers channel name.
public getChannelName ( ) : string
리턴 string The system loggers channel name

getHandlers() 공개 메소드

Returns the array with all registered handlers.
public getHandlers ( ) : array
리턴 array The registered handlers

getName() 공개 메소드

Returns loggers name
public getName ( ) : string
리턴 string The loggers name

getParam() 공개 메소드

Returns the param with the passed name casted to the specified type.
public getParam ( string $name ) : mixed
$name string The name of the param to be returned
리턴 mixed The requested param casted to the specified type

getParams() 공개 메소드

Array with the handler params to use.
public getParams ( ) : array
리턴 array

getParamsAsArray() 공개 메소드

Returns the params casted to the defined type as associative array.
public getParamsAsArray ( ) : array
리턴 array The array with the casted params

getPrimaryKey() 공개 메소드

Returns the nodes primary key, the name by default.
또한 보기: AppserverIo\Appserver\Core\Api\Node\AbstractNode::getPrimaryKey()
public getPrimaryKey ( ) : string
리턴 string The nodes primary key

getProcessors() 공개 메소드

Returns the array with all registered processors.
public getProcessors ( ) : array
리턴 array The registered processors

getType() 공개 메소드

Returns information about the system loggers class name.
public getType ( ) : string
리턴 string The system loggers class name

setParam() 공개 메소드

Sets the param with the passed name, type and value.
public setParam ( string $name, string $type, mixed $value ) : void
$name string The param name
$type string The param type
$value mixed The param value
리턴 void

setParams() 공개 메소드

Array with the handler params to use.
public setParams ( array $params ) : void
$params array The handler params
리턴 void