Dart Documentationredis_protocol_transformerStatusReply

StatusReply class

Used for status replies

class StatusReply extends _OneLineReply {

 /// Returns the status received with this reply.
 String get status => _getLine();

 String toString() => "StatusReply: $status";
}

Extends

RedisReply > _OneLineReply > StatusReply

Properties

final bool done #

inherited from _OneLineReply

Specifies if this reply has been fully received.

bool get done => _dataConsumer.done;

final String status #

Returns the status received with this reply.

String get status => _getLine();

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "StatusReply: $status";